Skip to content

docs: remove SECURITY.md to fallback to org-wide security policy #262

docs: remove SECURITY.md to fallback to org-wide security policy

docs: remove SECURITY.md to fallback to org-wide security policy #262

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
platform:
- "ubuntu-latest"
- "macos-latest"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Test
run: make test junitfile="${{ matrix.platform }}-junit-report.xml"
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results
path: '*-junit-report.xml'
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- uses: docker/setup-qemu-action@v2
with:
platforms: linux/arm64, linux/amd64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build
run: make dist
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- run: make lint-prep
- run: make lint
- run: go vet
notice:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: notice
run: make check-notice