Skip to content

Commit

Permalink
Add required dirs, add test workflow step
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejmrozinski committed Nov 8, 2023
1 parent 6474171 commit d652e56
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/golangci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: golangci-test
on:
workflow_dispatch:
pull_request:

permissions:
contents: read
pull-requests: read

jobs:
golangci_test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "stable"
cache: false
- name: golangci-test
run: go test ./...
Empty file.

0 comments on commit d652e56

Please sign in to comment.