Skip to content

Commit

Permalink
Update test CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Apr 1, 2024
1 parent c1306b5 commit 0f83f7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
env: true

- name: Test (Ubuntu / macOS)
if: runner.os == 'ubuntu' || runner.os == 'macos'
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
run: |
echo $CC
echo $CXX
$CC --version
$CXX --version
- name: Test (Windows)
if: runner.os == 'windows'
if: matrix.os == 'windows-latest'
run: |
echo $env:CC
echo $env:CXX
Expand Down

0 comments on commit 0f83f7a

Please sign in to comment.