Skip to content

Commit

Permalink
Fix version specification
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilfred committed Aug 27, 2022
1 parent b04ac73 commit db12fb0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/[email protected]
- uses: dtolnay/[email protected].0
- run: cargo test

test_linux_latest_stable:
Expand All @@ -24,23 +24,23 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/[email protected]
- uses: dtolnay/[email protected].0
- run: cargo test

test_windows:
name: Test Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/[email protected]
- uses: dtolnay/[email protected].0
- run: cargo test

regression_test:
name: Output Regression Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/[email protected]
- uses: dtolnay/[email protected].0
- name: Generate output for all sample files
run: ./sample_files/compare_all.sh
- name: Verify output is unchanged
Expand All @@ -51,13 +51,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/[email protected]
- uses: dtolnay/[email protected].0
- run: cargo package --allow-dirty

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/[email protected]
- uses: dtolnay/[email protected].0
- run: cargo fmt --all -- --check

0 comments on commit db12fb0

Please sign in to comment.