Skip to content

Merge pull request #46 from k1LoW/update-pkgs #87

Merge pull request #46 from k1LoW/update-pkgs

Merge pull request #46 from k1LoW/update-pkgs #87

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEBUG: 1
steps:
- name: Check out source code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
- name: Run lint
uses: reviewdog/action-golangci-lint@v2
- name: Run tests
run: make ci
- name: Run octocov
uses: k1LoW/octocov-action@v0
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
setup-test:
name: Set up test
if: github.event_name == 'pull_request'
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
env:
DEBUG: 1
steps:
- name: Check out source code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
- name: Run tests
run: make test-setup
shell: bash