Skip to content

docs: Change font and improve navigation readability #259

docs: Change font and improve navigation readability

docs: Change font and improve navigation readability #259

Workflow file for this run

name: go test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install virtualenv
run: |
pip install --upgrade virtualenv
- name: Run Go Tests
run: |
go test ./... -v