Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Dec 21, 2023
1 parent bf62ff8 commit 7835b5c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ runs:
using: "composite"
steps:
- name: Test
run: python allTests.py --workers=3
run: python3 allTests.py --workers=3
shell: bash
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos')

Expand Down
25 changes: 22 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,18 @@ concurrency:
cancel-in-progress: true

jobs:
ci:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Build Cache
uses: actions/cache@v3
with:
path: .
key: ${{ runner.os }}-build-${{ github.sha }}

- name: Checkout repository
uses: actions/checkout@v3

Expand All @@ -43,8 +49,21 @@ jobs:
${{ runner.os }}-build-${{ github.sha }}
${{ runner.os }}-build-
- name: Build
- name: Build ${{ matrix.os }}
uses: ./.github/actions/build

- name: Test
test:
needs: build
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Restore Build Cache
uses: actions/cache@v3
with:
path: .
key: ${{ runner.os }}-build-${{ github.sha }}

- name: Test ${{ matrix.os }}
run: python3 allTests.py --workers=3

0 comments on commit 7835b5c

Please sign in to comment.