v0.5.1 #78
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: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: cargo build --verbose | |
- name: Run Doc Tests default | |
run: cargo test -q --package o2o | |
- name: Run Doc Tests syn1 | |
run: cargo test -q --package o2o --no-default-features --features syn1 | |
- name: Run Doc Tests syn2 | |
run: cargo test -q --package o2o --no-default-features --features syn2 | |
- name: Run Integration Tests syn1 | |
run: cargo test -q --package o2o-tests --no-default-features --features syn1 | |
- name: Run Integration Tests syn2 | |
run: cargo test -q --package o2o-tests --no-default-features --features syn2 | |
- name: Run Impl Tests syn1 | |
run: cargo test -q --package o2o-impl --no-default-features --features syn | |
- name: Run Impl Tests syn2 | |
run: cargo test -q --package o2o-impl --no-default-features --features syn2 |