2021-02-19 07:49:15 +01:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-02-19 08:58:29 +01:00
|
|
|
branches: [master]
|
2021-02-19 07:49:15 +01:00
|
|
|
pull_request:
|
2021-02-19 08:58:29 +01:00
|
|
|
branches: [master]
|
2021-02-19 07:49:15 +01:00
|
|
|
|
2022-06-01 20:09:12 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-02-19 07:49:15 +01:00
|
|
|
jobs:
|
|
|
|
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-04-18 10:01:47 +02:00
|
|
|
go_version: [1.18.x]
|
2021-02-19 07:49:15 +01:00
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Set up Go 1.x
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go_version }}
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-02-19 08:41:24 +01:00
|
|
|
- name: Test
|
|
|
|
run: go test -v ./...
|
|
|
|
|
2021-02-19 07:49:15 +01:00
|
|
|
- name: Setup examples for testing
|
|
|
|
run: ./.github/scripts/setup_examples_test.bash
|
|
|
|
|
|
|
|
- name: Test examples
|
2021-02-19 08:41:24 +01:00
|
|
|
continue-on-error: true
|
2021-02-19 07:49:15 +01:00
|
|
|
working-directory: _examples
|
|
|
|
run: go test -v -mod=mod -cover -race ./...
|