Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
fixed ci/cd bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
AS1100K committed Jul 13, 2024
1 parent 3f1b479 commit 91569ff
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUST_VERSION_STABLE: 1.51.0
RUST_VERSION_STABLE: 1.79.0
RUST_VERSION_NIGHTLY: nightly-2021-03-25
MUTAGEN_COMMIT: f8249256c40769c916b5b00bd284f204d5540588
COV_THRESHOLD: 100.0
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION_STABLE }}
toolchain: ${{ env.RUST_VERSION_NIGHTLY }}
profile: minimal
override: true
- name: Build
Expand All @@ -37,7 +37,7 @@ jobs:
run: cargo test

check-coverage:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: test
steps:
- name: Checkout
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
run: bash .github/workflows/scripts/check_coverage.sh

check-mutations:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: test
steps:
- name: Checkout
Expand All @@ -85,15 +85,15 @@ jobs:
run: bash .github/workflows/scripts/check_mutations.sh

lint-rust:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION_STABLE }}
toolchain: ${{ env.RUST_VERSION_NIGHTLY }}
profile: minimal
components: rustfmt, clippy
override: true
Expand All @@ -105,7 +105,7 @@ jobs:
uses: EmbarkStudios/cargo-deny-action@v1

lint-generic:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: test
steps:
- name: Checkout
Expand Down

0 comments on commit 91569ff

Please sign in to comment.