Skip to content

Commit

Permalink
Test ! command
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Nov 30, 2023
1 parent ed6d75d commit 0e09cb0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ concurrency:
cancel-in-progress: true

jobs:
test:
unit:
strategy:
matrix:
runner:
- macos-latest
- ubuntu-latest
fail-fast: true
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout code
Expand All @@ -23,7 +24,7 @@ jobs:
- name: Remove ghcup
run: ghcup nuke
- name: Check ghcup is not present
run: ! command -v ghcup
run: "! command -v ghcup"
shell: bash
- name: Run tests
run: ./test/bats/bin/bats -T test
Expand All @@ -34,12 +35,13 @@ jobs:
runner:
- macos-latest
- ubuntu-latest
fail-fast: true
runs-on: ${{ matrix.runner }}
steps:
- name: Remove ghcup
run: ghcup nuke
- name: Check ghcup is not present
run: ! command -v ghcup
run: "! command -v ghcup"
shell: bash
- name: Test plugin
uses: asdf-vm/actions/plugin-test@v3
Expand Down

0 comments on commit 0e09cb0

Please sign in to comment.