Skip to content

chore: setup tooling #2

chore: setup tooling

chore: setup tooling #2

Workflow file for this run

name: Pull Requests
# test
on:
pull_request:
types: [opened, reopened, synchronize]
branches: [main]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
format-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/cache-cargo-install-action@v2.0.1
with:
tool: dprint
- run: make check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/cache-cargo-install-action@v2.0.1
with:
tool: cargo-nextest
- run: cargo nextest run