Skip to content

Merge pull request #10 from wawandco/adding-totp #37

Merge pull request #10 from wawandco/adding-totp

Merge pull request #10 from wawandco/adding-totp #37

Workflow file for this run

name: Linting & Testing
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
skip-go-installation: true
args: --version
version: v1.54
tests:
name: tests
needs: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: "1.22"
id: go
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
restore-keys: |
${{ runner.os }}-go
- name: test
run: |
go test --cover ./... -v