Skip to content

Commit

Permalink
Merge pull request #13 from FantasyRL/not_main
Browse files Browse the repository at this point in the history
workflow
  • Loading branch information
FantasyRL authored Apr 17, 2024
2 parents 2542df5 + 88b891b commit 349bb1c
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 16 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ name: "CodeQL"
on:
push:
branches:
- "main"
- "not_main"
- main
pull_request:
branches:
- "main"
- "not_main"
- main
schedule:
- cron: '42 14 * * 1'

Expand Down
12 changes: 0 additions & 12 deletions .github/workflows/golangci.yaml

This file was deleted.

51 changes: 51 additions & 0 deletions .github/workflows/golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: golangci
on:
push:
branches:
- main
pull_request:

env:
GO_VERSION: '1.22'

jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: lint
uses: golangci/[email protected]
with:
version: latest
skip-build-cache: true
skip-pkg-cache: true
tests-on-unix:
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
runs-on: ubuntu-latest
strategy:
matrix:
golang:
- '1.21'
- '1.22'
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
# https://github.com/actions/setup-go#supported-version-syntax
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
go-version: ${{ matrix.golang }}
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.golang }}-
- name: Run tests
run: make test

0 comments on commit 349bb1c

Please sign in to comment.