Skip to content

Draft PR: Live Visualization #24

Draft PR: Live Visualization

Draft PR: Live Visualization #24

Workflow file for this run

name: Test Flight Visualizer
on:
push:
branches:
- main
pull_request:
types: [opened, edited, reopened]
branches: [main]
env:
GO_VERSION: '1.20'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: go get .
- name: Test with Go
run: go test ./...