This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
Update SSM GPG key for anywhere installation #132
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [pull_request] | |
jobs: | |
build: | |
name: CI Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: 1.15.4 | |
- uses: actions/checkout@v2 | |
with: | |
path: src/github.com/aws/amazon-ecs-init | |
- name: run checks | |
run: | | |
export GOPATH=$GITHUB_WORKSPACE | |
export PATH=$PATH:$(go env GOPATH)/bin | |
cd $GITHUB_WORKSPACE/src/github.com/aws/amazon-ecs-init | |
make get-deps | |
make static-check | |
make test | |
make analyze-cover-profile |