Merge pull request #283 from liquidiert/feature/python_support #502
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: Test Rust | |
on: | |
push: | |
branches: | |
- master | |
- test-action-new-cli | |
pull_request: | |
jobs: | |
test-rust: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
- name: Runtime Tests | |
run: cargo test | |
working-directory: ./Runtime/Rust | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "7.0.x" # SDK Version to use; x will use the latest version of the 7.0 channel | |
include-prerelease: true | |
- name: Build Compiler | |
run: | | |
dotnet build Compiler | |
- name: Generator Compiliation Tests | |
run: cargo check -p auto-testing | |
working-directory: ./Laboratory/Rust | |
- name: Generator Funcunality Tests | |
run: cargo test -p functionality-testing | |
working-directory: ./Laboratory/Rust |