1
1
mirror of https://github.com/walles/moar.git synced 2024-10-26 21:13:11 +03:00
moar/.github/workflows/linux-ci.yml
Johan Walles 8f7f03f9dc Switch to GitHub Actions
Having to repeatedly re-affirm to Travis I'm still doing Open Source is
a nuisance.
2022-12-19 09:49:59 +01:00

19 lines
573 B
YAML

name: Linux CI
on:
push:
branches: [master]
pull_request:
jobs:
validate:
runs-on: ubuntu-22.04
steps:
- name: Install golangci-lint
# golangci-lint is required by test.sh. Latest version here if you want
# to bump it, version number is at the end of the "curl | sh"
# commandline below:
# https://github.com/golangci/golangci-lint/releases/latest
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$(go env GOPATH)"/bin v1.50.1
- run: ./test.sh