Skip to content

Commit

Permalink
set up workflows for each OS
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwparas committed Sep 2, 2024
1 parent bde7f64 commit 4e0ac55
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@ jobs:
# run: test -z $(git rev-list --after="24 hours" ${{github.sha}}) && echo "::set-output name=should_run::false"

optimize:
name: Test Suite (sync)

name: PGO Build
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
# needs: check_changes
# if: ${{needs.check_changes.outputs.should_run != 'false'}}
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 4e0ac55

Please sign in to comment.