Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Merge pull request #3 from kubearchive/github-ci #2

Merge pull request #3 from kubearchive/github-ci

Merge pull request #3 from kubearchive/github-ci #2

Workflow file for this run

name: ci/github
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
permissions:
contents: read
jobs:
unit:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.20.x
cache: true
check-latest: true
- name: Lint
run: make lint
- name: Build
run: make build
- name: Test
run: make test