Skip to content

test: add basic integration test #27

test: add basic integration test

test: add basic integration test #27

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
continuous-integration:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
- name: Unit tests
run: go test -v ./...
- name: Integration tests
run: python -m unittest discover -v -s test