Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 2 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ jobs:
git fetch upstream
export GIT_COMMITTER_EMAIL="rl-ci@example.com"
export GIT_COMMITTER_NAME="RL CI"
git rebase upstream/main
git rebase upstream/${{ github.base_ref }}
- name: For each commit, run cargo check (including in fuzz)
run: ci/check-each-commit.sh upstream/main
run: ci/check-each-commit.sh upstream/${{ github.base_ref }}

check_release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -291,20 +291,3 @@ jobs:
rustup component add rustfmt
- name: Run rustfmt checks
run: ci/rustfmt.sh

incremental-mutants:
runs-on: ubuntu-latest
if: github.ref_name != 'main' # `main` has no diff with itself
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Relative diff
run: |
git branch -av
git diff origin/main.. | tee git.diff
- uses: Swatinem/rust-cache@v2
- name: Mutants
run: |
cargo install cargo-mutants
cargo mutants --no-shuffle -j 2 -vV --in-diff git.diff
Loading