Feat/pkg structure #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.x | |
- name: Run Tests 01 | |
run: make run-tests-01 | |
- name: Run Tests 02 | |
run: make run-tests-02 | |
- name: Run Tests 03 | |
run: make run-tests-03 | |
- name: Run Tests 04 | |
run: make run-tests-04 | |
- name: Run Tests 05 | |
run: make run-tests-05 | |
- name: Run Tests 06 | |
run: make run-tests-06 |