Skip to content

Merge pull request #11 from qownnotes/dependabot/github_actions/actio… #25

Merge pull request #11 from qownnotes/dependabot/github_actions/actio…

Merge pull request #11 from qownnotes/dependabot/github_actions/actio… #25

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths-ignore:
- '*.md'
- 'doc/**'
- 'LICENSE'
pull_request:
env:
GO_VERSION: "1.17"
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Run unit tests
run: make test