We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c8e267 commit c459a71Copy full SHA for c459a71
.github/workflows/test.yml
@@ -8,24 +8,14 @@ on:
8
9
jobs:
10
test:
11
- strategy:
12
- matrix:
13
- os: [macos-latest, ubuntu-latest] # Run tests on both MacOS & Ubuntu
14
- runs-on: ${{ matrix.os }}
+ runs-on: macos-latest
15
16
steps:
17
- name: Checkout Repository
18
uses: actions/checkout@v3
19
20
- name: Install Dependencies
21
- run: |
22
- if [[ "$RUNNER_OS" == "Linux" ]]; then
23
- sudo apt update
24
- sudo apt install -y bats
25
- else
26
- brew install bats
27
- fi
+ run: brew install bats
28
29
- name: Run PHPVM Tests
30
31
- bats test_phpvm.bats
+ run: bats test_phpvm.bats
0 commit comments