Skip to content

Update ere and use ere-dockerized #35

Update ere and use ere-dockerized

Update ere and use ere-dockerized #35

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
toolchain: [1.88]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
components: clippy, rustfmt
- name: rustfmt
run: cargo +nightly fmt --all --check
- name: clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo test
run: cargo test --release --workspace --all-features --no-fail-fast