Skip to content

Merge pull request #20 from 0xForked/dependabot/go_modules/github.com… #58

Merge pull request #20 from 0xForked/dependabot/go_modules/github.com…

Merge pull request #20 from 0xForked/dependabot/go_modules/github.com… #58

Workflow file for this run

name: Run Lints & Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linter:
strategy:
matrix:
go-version: [1.19.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Install Required Dependencies
run: go mod tidy -compat=1.19
- name: Tests
run: make tests