Skip to content

[Feature] Unit test #150

[Feature] Unit test

[Feature] Unit test #150

Workflow file for this run

name: Tests
on: pull_request
jobs:
falcon-test:
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.22.3"
- name: Check go mod cache
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-falcon-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-falcon-
- name: Run falcon tests
run: go test ./...