Skip to content

Commit 4905bbc

Browse files
authored
Merge pull request #21598 from nirs/unit-test-on-macos-15
test: Run unit tests on macos-15
2 parents fdbff10 + 4208ec4 commit 4905bbc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/unit-test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches: [ master ]
66
paths:
7+
- .github/workflows/unit-test.yml
78
- go.mod
89
- '**/*.go'
910
- Makefile
@@ -13,6 +14,7 @@ on:
1314
- '!**/*.json'
1415
pull_request:
1516
paths:
17+
- .github/workflows/unit-test.yml
1618
- go.mod
1719
- '**/*.go'
1820
- Makefile
@@ -35,21 +37,21 @@ jobs:
3537
strategy:
3638
fail-fast: false
3739
matrix:
38-
os: [ubuntu-22.04, macos-13, windows-2022]
40+
os: [ubuntu-22.04, macos-15, windows-2022]
3941
runs-on: ${{ matrix.os }}
4042
steps:
4143
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
4244
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00
4345
with:
4446
go-version: ${{env.GO_VERSION}}
45-
cache: true
47+
cache: true
4648
- name: Download Dependencies
4749
run: go mod download
4850
# needed because pkg/drivers/kvm/domain.go:28:2:
4951
- name: Install libvirt (Linux)
5052
if: runner.os == 'Linux'
5153
run: |
52-
sudo apt-get update
54+
sudo apt-get update
5355
sudo apt-get install -y libvirt-dev
5456
- name: Install make (Windows)
5557
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)