Skip to content

リファクタリングと軽微な修正 (#18) #80

リファクタリングと軽微な修正 (#18)

リファクタリングと軽微な修正 (#18) #80

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
GOPROXY: https://proxy.golang.org
jobs:
lint-text:
name: lint-text
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Setup tools
run: |
make tools
- name: make lint-text
run: |
make lint-text
lint-go:
name: lint-go
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Setup tools
run: |
make tools
- name: make lint-go
run: |
# Explicitly set GOROOT to avoid golangci-lint/issues/3107
GOROOT=$(go env GOROOT)
export GOROOT
make lint-go
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Setup tools
run: |
make tools
- name: make test
run: |
make test