Skip to content

Added charge policy (#217) #238

Added charge policy (#217)

Added charge policy (#217) #238

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unit-tests:
runs-on: ubuntu-latest
env:
TEST_ENV: github
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Build
run: |
go build -v ./...
- name: Test
run: go test -v ./...