mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-14 11:04:27 +01:00
So that we get the latest language fixes.
There is little use to maitain compiler backward compatibility.
Let's just set the default golang version to the latest 1.19.2.
Fixes: #5494
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
(cherry picked from commit eab8d6be13)
22 lines
376 B
YAML
22 lines
376 B
YAML
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- reopened
|
|
- synchronize
|
|
|
|
name: Darwin tests
|
|
jobs:
|
|
test:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.19.2
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Build utils
|
|
run: ./ci/darwin-test.sh
|