Add an integration test setup and workflow #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
FORGE_REVISION: aa2e8a67a8ff38db145dcb1a1aa5c02d0b851235 | |
jobs: | |
compiler-tests: | |
name: Compiler Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 | |
intergration-tests: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Compiler | |
run: cargo build --verbose | |
- name: Install Racket | |
run: apt-get -y install racket | |
- name: Install Forge | |
run: | | |
cd .. | |
git clone https://github.com/tnelson/Forge -b ${FORGE_REVISION} | |
cd Forge/forge | |
raco pgk install | |
- name: Run Tests | |
run: cargo test --test external_annotation_tests |