Skip to content

Merge pull request #945 from wader/bump-docker-golang-1.22.3 #2708

Merge pull request #945 from wader/bump-docker-golang-1.22.3

Merge pull request #945 from wader/bump-docker-golang-1.22.3 #2708

Workflow file for this run

name: CI
on:
push:
branches:
- "master"
pull_request:
env:
GOLANGCILINT_VERSION: "1.58.0"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: "1.22.3"
- uses: actions/checkout@v3
- uses: golangci/golangci-lint-action@v3
with:
version: v${{ env.GOLANGCILINT_VERSION }}
test:
strategy:
matrix:
include:
- os: ubuntu-latest
goarch: amd64
test_target: test-race
# build and test on 32 bit, does not support race
- os: ubuntu-latest
goarch: "386"
test_target: test
- os: macos-latest
goarch: amd64
test_target: test
- os: windows-latest
goarch: amd64
test_target: test
runs-on: ${{ matrix.os }}
steps:
# only run cli binary tests on linux
- name: Install expect
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get install expect
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.22.3"
- name: Test
env:
GOARCH: ${{ matrix.goarch }}
run: make ${{ matrix.test_target }}