mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-13 02:46:21 +00:00
As we have an issue with a golang version for `run-cri-containerd`, it is required to bump the language. Signed-off-by: Hyounggyu Choi <Hyounggyu.Choi@ibm.com>
26 lines
503 B
YAML
26 lines
503 B
YAML
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- reopened
|
|
- synchronize
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
name: Darwin tests
|
|
jobs:
|
|
test:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.22.2
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Build utils
|
|
run: ./ci/darwin-test.sh
|