set roaring arch #20
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
linux-tests: | |
name: Linux Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
job_args: [crates/core, crates/widgets, .] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test ${{ matrix.job_args }} | |
working-directory: ${{ matrix.job_args }} | |
run: cargo test --release | |
macos-tests: | |
name: macOS Tests | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Tests | |
run: cargo test --release --all | |
windows-tests: | |
name: Windows Tests | |
runs-on: windows-latest | |
steps: | |
- name: release opts | |
run: rustc --print cfg | |
- name: release target cpus | |
run: rustc --print target-cpus | |
- name: clang version | |
run: clang --version | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Tests | |
run: cargo test --release --all |