Skip to content

Commit

Permalink
Chdir
Browse files Browse the repository at this point in the history
  • Loading branch information
ukoloff committed Aug 27, 2020
1 parent 7a42a82 commit 171bcc2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
nim-version: ${{ matrix.nim_version }}

- name: Test examples
working-directory: examples
run: |
cd examples
for file in $(ls -v example_*nim); do
echo "=== test: $file ==="
nim c "$file"
Expand Down Expand Up @@ -109,11 +109,11 @@ jobs:
nim -v
nimble -v
- name: Test examples
working-directory: examples
run: |
cd examples
for file in $(ls -v example_*nim)
for cpu in amd64 i386
do
for cpu in amd64 i386
for file in $(ls -v example_*nim)
do
echo "=== test: $file @$cpu ==="
nim c -d:mingw -d:release --cpu:$cpu "$file"
Expand Down

0 comments on commit 171bcc2

Please sign in to comment.