Skip to content

Merge pull request #75 from lunarr-app/dependabot/go_modules/github.c… #228

Merge pull request #75 from lunarr-app/dependabot/go_modules/github.c…

Merge pull request #75 from lunarr-app/dependabot/go_modules/github.c… #228

Workflow file for this run

name: Go Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-build:
name: Test and Build
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.x
- name: Run Tests
run: make test
- name: Build
run: make build