Merge branch 'tmc:main' into tei-truncate #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
# Cache is managed by golangci-lint | |
# https://github.com/actions/setup-go#caching-dependency-files-and-build-outputs | |
cache: false | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
args: --timeout=4m | |
version: v1.55.1 | |
build-examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
cache: false | |
- uses: actions/checkout@v3 | |
- name: Build examples | |
run: make build-examples | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... |