Skip to content

Implement list of speakers slides #51

Implement list of speakers slides

Implement list of speakers slides #51

Workflow file for this run

name: main
on:
push:
branches:
- main
pull_request:
jobs:
main:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Go Format
run: gofmt -s -w . && git diff --exit-code
- name: Go Vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
- name: Test
run: go test -v -count=1 -race -shuffle=on -coverprofile=coverage.txt -json ./... > test.json
- name: Annotate tests
if: always()
uses: guyarb/[email protected]
with:
test-results: test.json