Skip to content

Bump actions/checkout from 3 to 4 (#160) #268

Bump actions/checkout from 3 to 4 (#160)

Bump actions/checkout from 3 to 4 (#160) #268

Workflow file for this run

name: CD
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ~1.19.1
- name: Build
run: |
go build -v ./cmd/aws-sigv4-proxy
- name: Run tests
run: go test -v ./...