tests fixed after refactor #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ./... |