Skip to content

ci: setup pipeline

ci: setup pipeline #1

Workflow file for this run

---
name: Tests
on:
push:
branches-ignore:
- 'master'
pull_request:
pull_request_target:
types: [labeled]
env:
GO_VERSION: 1.14
PYTHON_VERSION: '3.x'
jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- name: Prepare env
uses: ./.github/actions/prepare-test-env
- name: Static code check
uses: ./.github/actions/static-code-check
- name: Unit tests
run: go test ./lib
- name: Integration tests
run: pytest -v test/integration