Skip to content

Commit

Permalink
Bump CI toolchain versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Aug 15, 2024
1 parent 6f2ced6 commit 37dec3a
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
run: |
rustup update ${{ matrix.rust }} --no-self-update
rustup default ${{ matrix.rust }}
- run: cargo test
- name: Integration test
run: cargo test --manifest-path test-crate/Cargo.toml
Expand All @@ -23,7 +25,10 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update stable && rustup default stable && rustup component add rustfmt
run: |
rustup update stable --no-self-update
rustup default stable
rustup component add rustfmt
- run: cargo fmt -- --check

cross_compile_test:
Expand Down Expand Up @@ -60,11 +65,13 @@ jobs:
test: false
steps:
- uses: actions/checkout@master
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.platform.target }}
- uses: taiki-e/install-action@v1
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup target add ${{ matrix.platform.target }}
- run: cargo fmt -- --check
- uses: taiki-e/install-action@v2
with:
tool: cross
- name: cross test
Expand Down

0 comments on commit 37dec3a

Please sign in to comment.