Skip to content

Translate current openapi tests to txtar #192

Translate current openapi tests to txtar

Translate current openapi tests to txtar #192

Workflow file for this run

name: CI
on:
pull_request: ~
push:
branches: [main] # so that we build a Go cache that can be re-used in PRs
env:
GO_VERSION: '1.21'
DOCKER_TOOLS: false
jobs:
linters:
name: Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Install vendors
run: make deps
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
# Done by setup-go
skip-pkg-cache: true
skip-build-cache: true
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Install vendors
run: make deps
- name: Tests
run: make tests