Update deps #488
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: Test | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: hecrj/setup-rust-action@v2 | |
| with: | |
| rust-version: nightly | |
| - name: Check Cargo availability | |
| run: cargo --version | |
| - name: Check Rustup default toolchain | |
| run: rustup default | grep nightly | |
| - name: Test | |
| run: | | |
| cargo test |