Skip to content

Fix typo in appointment filter processing #30

Fix typo in appointment filter processing

Fix typo in appointment filter processing #30

name: Code Test Coverage
on:
push:
branches:
- main
paths:
- "**/*.go"
pull_request:
branches: "*"
paths:
- "**/*.go"
jobs:
test:
name: Test with Coverage
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22.3"
- name: Check out code
uses: actions/checkout@v4
- name: Install dependencies
run: |
go mod download
- name: Run Unit tests
run: |
go test -race -covermode atomic -coverprofile=covprofile ./...
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github