parameter integer rules integration test (#548) #2016
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
# Cancel in-progress CI runs from the same branch | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CI: true | |
jobs: | |
lint: | |
name: Lint | |
uses: ./.github/workflows/lint.yml | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yml | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
with: | |
runsOn: ${{ matrix.os }} | |
artifactId: cloudtruth-ci-${{ matrix.os }} | |
test: | |
name: Test | |
uses: ./.github/workflows/test-staging.yml | |
needs: [build] | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-latest | |
options: --before test_parameter | |
- os: ubuntu-latest | |
options: --after test_parameter --before test_project | |
- os: windows-latest | |
options: --after test_project | |
with: | |
runsOn: ${{ matrix.os }} | |
artifactId: cloudtruth-ci-${{ matrix.os }} | |
testRunnerOptions: ${{ matrix.options }} --reports | |
rustBacktrace: "1" | |
secrets: | |
CLOUDTRUTH_API_KEY: ${{ secrets.CT_STAGING_CI_ADMIN_API_KEY }} |