Skip to content

Deploy Github action #17

Deploy Github action

Deploy Github action #17

Workflow file for this run

name: 'Build & Test'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test:
runs-on: ["ubuntu-latest"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Go version
run: go version
- name: Go build
run: go build
- name: Go Test
run: go test