chore(deps): update rust crate cc to 1.4.6 #1378
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: Windows | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main, next ] | |
| schedule: | |
| # At 23:00 on Thursday. | |
| - cron: '0 23 * * 4' | |
| env: | |
| RUST_BACKTRACE: full | |
| jobs: | |
| build_test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [windows-latest] | |
| toolchain: [stable] | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - uses: extractions/setup-just@v3 | |
| - uses: hustcer/setup-nu@v3.20 | |
| with: | |
| version: '0.105.1' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PAT_GLOBAL }} | |
| - name: Just version | |
| run: just --version | |
| - name: Build | |
| run: just build_all | |
| - name: Test | |
| run: just test_all |