Skip to content

Updated working example domain name. #26

Updated working example domain name.

Updated working example domain name. #26

Workflow file for this run

name: unit_testing
on:
push:
branches: ['*']
tags-ignore: ['*']
jobs:
unit_testing:
runs-on: ubuntu-22.04
steps:
- name: Checkout ${{ github.repository }}
uses: actions/[email protected]
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.22.4
- name: Install dependencies
run: go get ./...
- name: Test with the Go CLI
run: go test ./... -json > test-results.json
- name: Upload Go test results
uses: actions/[email protected]
with:
name: test-results-${{ github.sha }}
path: test-results.json