diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f312879a1..6c0a62e3a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ defaults: jobs: unit-test: - name: unit tests | ${{ matrix.os }} | py${{ matrix.python-version }} + name: "py${{ matrix.python-version }} | ${{ matrix.os }} | unit tests" runs-on: ${{ matrix.os }}-latest strategy: fail-fast: false @@ -52,12 +52,13 @@ jobs: name: Unittest report path: ${{ matrix.os }}_${{ matrix.python-version }}_unit_test_report.html integration-test: - name: integration tests | ${{ matrix.os }} + name: "py${{ matrix.python-version }} | ${{ matrix.os }} | integration tests" runs-on: ${{ matrix.os }}-latest strategy: fail-fast: false matrix: os: [macos, ubuntu, windows] + python-version: ["3.12"] steps: - name: Checkout uses: actions/checkout@v3