diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9222702..76cddee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,8 +23,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: [3.9] - node-version: [14.x] - event-name: [push] + node-version: [16.x] steps: - uses: actions/checkout@v3 @@ -61,12 +60,12 @@ jobs: - name: Checks run: | make checks - if: ${{ github.event_name == matrix.event-name || matrix.os == 'ubuntu-latest' }} + if: ${{ matrix.os == 'ubuntu-latest' }} - name: Test run: | make tests - if: ${{ github.event_name == matrix.event-name || matrix.os == 'ubuntu-latest' }} + if: ${{ matrix.os == 'ubuntu-latest' }} - name: Upload test results uses: actions/upload-artifact@v3