Initial commit

This commit is contained in:
vicentepinto98 2023-09-07 11:34:45 +01:00
commit e4c8a6fbf4
186 changed files with 29501 additions and 0 deletions

22
.github/workflows/ci.yaml vendored Normal file
View file

@ -0,0 +1,22 @@
name: CI Workflow
on: [pull_request, workflow_dispatch]
env:
GO_VERSION: '1.20'
jobs:
main:
name: Main
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
uses: ./.github/actions/build
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint
run: make lint
- name: Test
run: make test