Noninteractive frontend for apt-get #24
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: "Test" | |
on: [push, pull_request] | |
jobs: | |
local: | |
name: Local Tests | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Set up Go 1.14 | |
uses: actions/[email protected] | |
with: | |
go-version: 1.14 | |
id: go | |
- name: Install Dependencies | |
run: | | |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Download Dependencies | |
run: go mod download | |
- name: "Unit Tests" | |
run: | | |
make test | |
shell: bash |