Release 0.11.0 #34
This file contains hidden or 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
| on: [push, pull_request] | |
| name: Continuous integration | |
| jobs: | |
| check: | |
| name: Compile and Test | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| toolchain: | |
| - nightly | |
| - stable | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ${{ matrix.toolchain }} | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| components: rustfmt | |
| # TODO: enable once the differences are resolved | |
| #- name: cargo fmt --check | |
| # run: cargo fmt --check | |
| - run: cargo build | |
| - run: cargo test | |
| - run: cargo test --doc |