Scaffolding

This commit is contained in:
altafan
2023-10-30 14:43:51 +01:00
commit bd6199a787
32 changed files with 567 additions and 0 deletions

19
.github/workflows/ci.intergation.yaml vendored Executable file
View File

@@ -0,0 +1,19 @@
name: ci_integration
on:
push:
branches: [master]
jobs:
test:
name: integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ">1.17.2"
- uses: actions/checkout@v3
- run: go get -v -t -d ./...
- name: integration testing
run: make integrationtest