Skip to content

feat: prepare github action workflows #1 #10

feat: prepare github action workflows #1

feat: prepare github action workflows #1 #10

Workflow file for this run

name: 'Run tests'
on:
pull_request: labeled
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
if: ${{ github.event.label.name == 'testing' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20.4'
- name: Run tests
shell: bash
run: |
make test