Skip to content

Allow clearing the terminal before each execution #18

Allow clearing the terminal before each execution

Allow clearing the terminal before each execution #18

Workflow file for this run

name: go test
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build
run: go build -v -o . ./...
- name: Test
run: go test -v ./...