|
| 1 | +name: Build |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - master |
| 7 | + tags: |
| 8 | + - 'v[0-9]+[.0-9]*' |
| 9 | + pull_request: |
| 10 | + branches: |
| 11 | + - master |
| 12 | + - develop |
| 13 | + - 'v[0-9]+[.0-9]*' |
| 14 | + |
| 15 | +env: |
| 16 | + CARGO_TERM_COLOR: always |
| 17 | + |
| 18 | +jobs: |
| 19 | + default: |
| 20 | + runs-on: ubuntu-latest |
| 21 | + steps: |
| 22 | + - uses: actions/checkout@v4 |
| 23 | + - uses: dtolnay/rust-toolchain@stable |
| 24 | + - run: cargo check --workspace |
| 25 | + no-default: |
| 26 | + runs-on: ubuntu-latest |
| 27 | + steps: |
| 28 | + - uses: actions/checkout@v4 |
| 29 | + - uses: dtolnay/rust-toolchain@stable |
| 30 | + - run: cargo check --workspace --no-default-features |
| 31 | + features: |
| 32 | + runs-on: ubuntu-latest |
| 33 | + strategy: |
| 34 | + fail-fast: false |
| 35 | + matrix: |
| 36 | + feature: [ stl, serde ] |
| 37 | + steps: |
| 38 | + - uses: actions/checkout@v4 |
| 39 | + - uses: dtolnay/rust-toolchain@stable |
| 40 | + - name: Feature ${{matrix.feature}} |
| 41 | + run: cargo check --workspace --no-default-features --features=${{matrix.feature}} |
| 42 | + - name: Feature ${{matrix.feature}} |
| 43 | + run: cargo check --workspace --features=${{matrix.feature}} |
| 44 | + platforms: |
| 45 | + runs-on: ${{ matrix.os }} |
| 46 | + strategy: |
| 47 | + fail-fast: false |
| 48 | + matrix: |
| 49 | + os: [ ubuntu-22.04, ubuntu-latest, macos-13, macos-latest, windows-2019, windows-latest ] |
| 50 | + steps: |
| 51 | + - uses: actions/checkout@v4 |
| 52 | + - uses: dtolnay/rust-toolchain@stable |
| 53 | + - name: Platform ${{matrix.os}} |
| 54 | + run: cargo check --workspace --all-features # we skip test targets here to be sure that the main library can be built |
| 55 | + toolchains: |
| 56 | + runs-on: ubuntu-latest |
| 57 | + strategy: |
| 58 | + fail-fast: false |
| 59 | + matrix: |
| 60 | + toolchain: [ nightly, beta, stable, 1.77.0 ] |
| 61 | + steps: |
| 62 | + - uses: actions/checkout@v4 |
| 63 | + - uses: dtolnay/rust-toolchain@master |
| 64 | + with: |
| 65 | + toolchain: ${{matrix.toolchain}} |
| 66 | + - name: Toolchain ${{matrix.toolchain}} |
| 67 | + run: cargo +${{matrix.toolchain}} check --workspace --all-targets --all-features |
0 commit comments