Skip to content

Try adding a build cache #16

Try adding a build cache

Try adding a build cache #16

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# just triggers rustup to download the toolchain
- name: Cache Toolchain
uses: actions/cache@v3
with:
path: ~/.rustup
key: ${{ runner.os }}-${{ hashFiles('rust-toolchain.toml') }}
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-${{ hashFiles('Cargo.lock', 'rust-toolchain.toml') }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: |
cargo test --test non_transitive_graph_tests
cargo test --test call_chain_analysis_tests
cargo test --test control_flow_tests
cargo test --test new_alias_analysis_tests
cargo test --test async_tests
# cargo test --test external_annotation_tests