Skip to content

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasnde committed Mar 6, 2024
1 parent 4cbfec3 commit 054d57c
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/execute_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: PR checks

permissions:
id-token: write # required to use OIDC authentication
contents: read # required to check out the code from the repo

on:
workflow_dispatch:
inputs: {}
pull_request:

jobs:
golangci-lint:
name: Execute golangci-lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.22.x"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
only-new-issues: true
args: --issues-exit-code=0 --timeout 300s
check-go:
name: Execute go tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.22.x"
- name: Install dependencies
run: |
go version
go install golang.org/x/lint/golint@latest
- name: Check Main
run: |
go vet ./...
golint ./...
working-directory: "./pkg"
- name: Test main
run: |
go test ./...
working-directory: "./pkg"

0 comments on commit 054d57c

Please sign in to comment.