Skip to content

Simplify CI setup

Simplify CI setup #348

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.74.0
profile: minimal
override: true
components: clippy
- uses: Swatinem/rust-cache@v1.2.0
- run: make setup
- run: make test