Skip to content

Bump actions/setup-python from 4 to 5 #59

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #59

Workflow file for this run

name: CI
on:
push:
branches: [master, staging, trying]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: check
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.70.0
- stable
- beta
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- uses: swatinem/rust-cache@v2
- name: cargo-check
uses: actions-rs/cargo@v1
with:
command: check
deny:
name: deny
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- uses: actions/checkout@v4
- name: cargo-deny
uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}
fmt:
name: format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
- run: rustup component add rustfmt
- name: cargo-fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.70.0
- stable
- beta
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- uses: swatinem/rust-cache@v2
- name: cargo-test
uses: actions-rs/cargo@v1
with:
command: test
args: --all --all-features
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
override: true
- uses: swatinem/rust-cache@v2
- run: rustup component add clippy
- name: cargo-clippy
run: cargo clippy --all --all-targets --all-features
# We need some "accummulation" job here because bors fails (timeouts) to
# listen on matrix builds.
# Hence, we have some kind of dummy here that bors can listen on
ci-success:
name: CI
if: ${{ success() }}
needs:
- check
- clippy
- deny
- fmt
- test
runs-on: ubuntu-latest
steps:
- name: CI succeeded
run: exit 0