Skip to content

Commit

Permalink
ga: update to latest versions of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
0-wiz-0 committed Mar 20, 2024
1 parent e0c83cf commit db045aa
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit db045aa

Please sign in to comment.