forked from TrueCloudLab/xk6-frostfs
39 lines
737 B
YAML
39 lines
737 B
YAML
|
name: Tests and linters
|
||
|
on: [pull_request]
|
||
|
|
||
|
jobs:
|
||
|
tests:
|
||
|
name: Tests
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
go_versions: [ '1.20', '1.21' ]
|
||
|
fail-fast: false
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Set up Go
|
||
|
uses: actions/setup-go@v3
|
||
|
with:
|
||
|
go-version: '${{ matrix.go_versions }}'
|
||
|
cache: true
|
||
|
|
||
|
- name: Run tests
|
||
|
run: make test
|
||
|
|
||
|
tests-race:
|
||
|
name: Tests with -race
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Set up Go
|
||
|
uses: actions/setup-go@v3
|
||
|
with:
|
||
|
go-version: '1.21'
|
||
|
cache: true
|
||
|
|
||
|
- name: Run tests
|
||
|
run: go test ./... -count=1 -race
|
||
|
|