xgo/.github/workflows/test.yml

35 lines
831 B
YAML
Raw Normal View History

2020-05-23 09:09:56 +03:00
name: test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: set up Go
uses: actions/setup-go@v1
with:
go-version: 1.18
2020-05-23 09:09:56 +03:00
id: go
- name: set up Go module cache
uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: setup env
run: |
2021-03-02 09:10:36 +03:00
echo "name=GOPATH::$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
2020-05-23 09:09:56 +03:00
shell: bash
- name: check out code
uses: actions/checkout@v2
- name: install golint
2023-01-28 18:30:26 +03:00
run: go install golang.org/x/lint/golint@latest
2020-05-23 09:09:56 +03:00
- name: run tests
run: make test