Map math script in old_tag_from_script #517
Workflow file for this run
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
| name: Rust | |
| on: [push, pull_request] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-15] | |
| rust: [stable] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Build without std | |
| run: cargo build --no-default-features | |
| - name: Build with std | |
| run: cargo build | |
| - name: Run tests | |
| run: cargo test --verbose |