diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c47d83d..cbdd80c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,18 +5,17 @@ permissions: jobs: all: runs-on: ${{ matrix.os }} - name: ${{ matrix.os }}${{ matrix.name_extra }} + name: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-latest, ubuntu-latest, windows-latest] cmake_extra: [""] - name_extra: [""] steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: install python and pip - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.11' - name: prepare build directory @@ -31,9 +30,9 @@ jobs: run: | cmake --build . --config Release - name: Archive production artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: tests-directory + name: tests-directory-${{ matrix.os }} path: | ${{runner.workspace}}/build/tests - name: test