17 lines
311 B
YAML
17 lines
311 B
YAML
|
name: Test
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches: [ "main" ]
|
||
|
pull_request:
|
||
|
branches: [ "main" ]
|
||
|
jobs:
|
||
|
|
||
|
test:
|
||
|
name: Run tests
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Run formatter
|
||
|
run: test -z $(gofmt -l ./src)
|