v0.1.25 bumped to stitch version for https://github.com/mlb2251/stitc… #46
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 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update stable && rustup default stable | |
- run: python3 -m pip install prettytable matplotlib seaborn | |
- name: build | |
run: make build | |
- name: install | |
run: make install | |
- name: test | |
run: make test | |
- name: claim-1 | |
run: make claim-1 | |
- name: claim-2 | |
run: make claim-2 SEEDS=10 | |
- name: Upload plots | |
uses: actions/upload-artifact@v3 | |
with: | |
name: plots-${{ matrix.os }} | |
path: experiments/plots |