immich-exporter/.github/workflows/test.yml

19 lines
372 B
YAML
Raw Normal View History

name: Test
on:
workflow_dispatch:
push:
2023-10-19 20:19:59 +02:00
branches: ["main"]
pull_request:
2023-10-19 20:19:59 +02:00
branches: ["main"]
2023-10-19 20:19:59 +02:00
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
2023-10-19 20:19:59 +02:00
uses: actions/checkout@v4
- name: Run unit tests
run: go test -v ./src/tests
- name: Run formatter
run: test -z $(gofmt -l ./src)