Skip to content

build: Don't run upx on darwin (unsupported) #18

build: Don't run upx on darwin (unsupported)

build: Don't run upx on darwin (unsupported) #18

name: Test and Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test_and_lint:
strategy:
matrix:
go: [^1.19]
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test and Lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v3
- name: Run unit and integration tests
run: make test
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.50