Skip to content

Commit

Permalink
Fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kolsean committed Jun 22, 2023
1 parent 2517c3e commit 2734e8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/linter.yml → .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
name: golangci-lint
name: Golangci-lint
on:
push:
branches:
- main
pull_request:

jobs:
golangci:
golangci-lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.19'

Expand Down
4 changes: 2 additions & 2 deletions .github/unit-tests.yml → .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.19'

Expand Down

0 comments on commit 2734e8d

Please sign in to comment.