2021-02-19 07:49:15 +01:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-08-20 02:12:46 +02:00
|
|
|
branches: [main]
|
2021-02-19 07:49:15 +01:00
|
|
|
pull_request:
|
2023-08-20 02:12:46 +02:00
|
|
|
branches: [main]
|
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:
|
2023-08-10 23:24:32 +02:00
|
|
|
go_version: [1.21.x]
|
2021-02-19 07:49:15 +01:00
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Set up Go 1.x
|
2023-03-17 11:42:19 +01:00
|
|
|
uses: actions/setup-go@v4
|
2021-02-19 07:49:15 +01:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go_version }}
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
2023-03-17 11:42:19 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-02-19 07:49:15 +01:00
|
|
|
|
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 ./...
|