Skip to content

Moved to IPv4

Moved to IPv4 #36

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
- qa
- dev
pull_request:
branches: [ '**' ]
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
- name: Build
run: go build -v ./...
- name: Test
run: go test ./... -v -race -covermode=atomic -coverprofile=coverage.out
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: ShatteredRealms/go-backend