Skip to content

tests fixed after refactor #4

tests fixed after refactor

tests fixed after refactor #4

Workflow file for this run

on:
push:
branches:
- "*"
name: integration
jobs:
test:
## Defines the platform for each test run
runs-on: ubuntu-latest
## the steps that will be run through for each version and platform
## combination
steps:
## sets up go based on the version
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.22.x
## checks out our code locally so we can work with the files
- name: Checkout code
uses: actions/checkout@v2
## runs go test ./...
- name: Test
run: go test ./...