Skip to content

Merge pull request #68 from eirtools/renovate/actions-cache-5.x #151

Merge pull request #68 from eirtools/renovate/actions-cache-5.x

Merge pull request #68 from eirtools/renovate/actions-cache-5.x #151

Workflow file for this run

---
name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Cache Cargo
uses: ./.github/actions/cache
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose