Skip to content

add additional parameter tests #1987

add additional parameter tests

add additional parameter tests #1987

Workflow file for this run

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 }}