Skip to content

Commit

Permalink
ci: fix github workflows (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
q9f authored Sep 29, 2021
1 parent 5fffb6d commit d994c7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: shards install --verbose
run: |
shards install --verbose
- name: Run Test Suite
run: |
shards build --verbose
crystal tool format --check
crystal spec --verbose --error-trace --time -Dpreview_mt
crystal run --verbose --error-trace --stats -Dpreview_mt ./try.cr
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: shards install --verbose
run: |
shards install --verbose
- name: Run Test Suite
run: |
shards build --verbose
crystal tool format --check
crystal spec --verbose --error-trace --time -Dpreview_mt
crystal run --verbose --error-trace --stats -Dpreview_mt ./try.cr

0 comments on commit d994c7c

Please sign in to comment.