Skip to content

Rename test.yml to test.yml #1

Rename test.yml to test.yml

Rename test.yml to test.yml #1

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: Go build
run: go build
- name: Go Test
run: go test