Split handle_upgrade into handle_upgrade_all and handle_upgrade_packages #22
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: | |
| branches: | |
| - main | |
| paths: | |
| - "**.rs" | |
| - Cargo.toml | |
| - Cargo.lock | |
| - .github/workflows/cross-compile.yml | |
| - rust-toolchain.toml | |
| pull_request: | |
| paths: | |
| - "**.rs" | |
| - Cargo.toml | |
| - Cargo.lock | |
| - .github/workflows/cross-compile.yml | |
| - rust-toolchain.toml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| name: test | |
| jobs: | |
| compile: | |
| strategy: | |
| matrix: | |
| os: [macos, ubuntu] | |
| name: compile | |
| runs-on: ${{ matrix.os }}-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/cross-compile | |
| with: | |
| os: ${{ matrix.os }} |