Skip to content

build: Run the latest.txt script after release-pr. #364

build: Run the latest.txt script after release-pr.

build: Run the latest.txt script after release-pr. #364

Workflow file for this run

name: cargo-test
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
# Run build & test separately so that their time can be measured individually
- run: cargo build --verbose
- run: cargo test --verbose