chore!: remove deprecated server function and overhaul c examples #1443
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: Pact-Rust Compatibility Suite | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| pact_do_not_track: true | |
| jobs: | |
| v1: | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| operating-system: [ ubuntu-latest, windows-latest, macos-15, macos-15-intel ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Run Cucumber | |
| run: cargo test --test v1* | |
| working-directory: compatibility-suite | |
| v2: | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| operating-system: [ ubuntu-latest, windows-latest, macos-15, macos-15-intel ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Run Cucumber | |
| run: cargo test --test v2* | |
| working-directory: compatibility-suite | |
| v3: | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| operating-system: [ ubuntu-latest, windows-latest, macos-15, macos-15-intel ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Run Cucumber | |
| run: cargo test --test v3* | |
| working-directory: compatibility-suite | |
| v4: | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| operating-system: [ ubuntu-latest, windows-latest, macos-15, macos-15-intel ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Run Cucumber | |
| run: cargo test --test v4* | |
| working-directory: compatibility-suite |