Skip to content

Also reference the token from the top #4

Also reference the token from the top

Also reference the token from the top #4

Workflow file for this run

name: Testing code - Commits not tied to PRs
on:
push:
branches-ignore:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
test-app:
name: Test Application
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run GolangCI-Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
- name: Test application
run: go test -v ./...