Skip to content

Merge pull request #20 from halprin/new_go #2

Merge pull request #20 from halprin/new_go

Merge pull request #20 from halprin/new_go #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Set-up Go
uses: actions/setup-go@v2
with:
go-version: ^1.21
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: make compile
- name: Test
env:
AWS_REGION: us-east-1
AWS_ACCESS_KEY_ID: DogCow
AWS_SECRET_ACCESS_KEY: Moof
run: make test