Skip to content

Commit

Permalink
Merge pull request #69 from rfay/20250112_fix_github_tests
Browse files Browse the repository at this point in the history
tests: Update github config to use current macos and actions/checkout, fixes #68
  • Loading branch information
martin-schulze-vireso authored Jan 13, 2025
2 parents 7d839ca + 909e5b0 commit 0cd35d3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: shellcheck ./src/*
build:
strategy:
matrix:
os: ['macos-12', 'ubuntu-latest']
os: ['macos-15', 'ubuntu-latest']
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: ./script/install-bats.sh
- uses: actions/checkout@v2

- uses: actions/checkout@v4
with:
repository: bats-core/bats-support
path: bats-support

# set PATh to ensure we use bats from our local installation (looking at you Mac Runner!)
- name: bats test
run: |
PATH="$HOME/.local/bin:$PATH"
bats -v
BATS_LIB_PATH="$PWD" bats --print-output-on-failure test
BATS_LIB_PATH="$PWD" bats --print-output-on-failure test

0 comments on commit 0cd35d3

Please sign in to comment.