Skip to content

Adding GitHub workflows yaml #2

Adding GitHub workflows yaml

Adding GitHub workflows yaml #2

Workflow file for this run

name: Test
on: push
jobs:
build-and-upload:
# strategy:
# matrix:
# include:
# - target: x86_64-unknown-linux-gnu
# os: ubuntu-22.04
# - target: x86_64-apple-darwin
# os: macos-11
# runs-on: ${{ matrix.os }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup update stable && rustup default stable
- name: Run Tests
run: |
cargo test
- name: Run Benchmarks
run: |
cargo bench --bench=tango -- compare