8a7ebfefa1
Signed-off-by: martabal <74269598+martabal@users.noreply.github.com>
17 lines
No EOL
311 B
YAML
17 lines
No EOL
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) |