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

28 lines
519 B
YAML
Raw Permalink Normal View History

2024-01-15 15:14:54 +01:00
name: Tests
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
2023-10-19 20:19:59 +02:00
- name: Run unit tests
2024-01-15 15:14:54 +01:00
run: make test
- name: Run formatter
2024-01-15 15:14:54 +01:00
run: cd src && test -z $(gofmt -l .)
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
2024-01-15 15:14:54 +01:00
working-directory: src