Skip to content

Test (rcy)

Test (rcy) #59

Workflow file for this run

name: Test
run-name: Test (${{ github.actor }})
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Setup Environment
run: echo "SQLITE_DB=:memory:" >> $GITHUB_ENV
- run: go test ./...