Skip to content

Update actions/download-artifact action from v5 to v7 (major v7) #154

Update actions/download-artifact action from v5 to v7 (major v7)

Update actions/download-artifact action from v5 to v7 (major v7) #154

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