Skip to content

build(deps): bump actions/setup-go from 2 to 5 #6104

build(deps): bump actions/setup-go from 2 to 5

build(deps): bump actions/setup-go from 2 to 5 #6104

Workflow file for this run

name: Client build and unit tests
on:
- push
- pull_request
jobs:
test:
strategy:
fail-fast: false
matrix:
go:
- 1.13.x
- 1.16.x
- 1.17.x
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test client package
env:
CGO_ENABLED: 0
run: go test -v ./client/...
- name: Test lxc package
env:
CGO_ENABLED: 0
run: go test -v ./lxc/...
- name: Test shared package
env:
CGO_ENABLED: 0
run: go test -v ./shared/...
- name: Create build directory
run: |
mkdir bin
- name: Build static lxc
env:
CGO_ENABLED: 0
run: |
go build -o bin ./lxc
- name: Build static lxd-p2c
if: runner.os == 'Linux'
env:
CGO_ENABLED: 0
run: |
go build -o bin ./lxd-p2c
- name: Upload artifacts
uses: actions/upload-artifact@v2
if: matrix.go == '1.17.x'
continue-on-error: true
with:
name: ${{ runner.os }}
path: bin/