Skip to content

Noninteractive frontend for apt-get #24

Noninteractive frontend for apt-get

Noninteractive frontend for apt-get #24

Workflow file for this run

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