indieauth-server/.forgejo/workflows/workflow.yaml

53 lines
1.2 KiB
YAML
Raw Normal View History

2024-10-12 18:43:48 +01:00
---
name: CI
2024-10-12 18:43:48 +01:00
on:
pull_request:
branches:
- main
2024-10-12 18:43:48 +01:00
types:
- opened
- synchronize
jobs:
tests:
name: Tests
2024-10-12 18:43:48 +01:00
if: ${{ ! github.event.pull_request.draft }}
runs-on: docker
steps:
- name: Checkout Repository
uses: https://code.forgejo.org/actions/checkout@v4
- name: Run tests
2024-10-12 18:43:48 +01:00
uses: https://codeflow.dananglin.me.uk/actions/mage-ci@main
with:
target: test
env:
PROJECT_TEST_VERBOSE: "1"
PROJECT_TEST_COVER: "1"
- name: Run gosec
uses: https://codeflow.dananglin.me.uk/actions/mage-ci@main
with:
target: gosec
- name: Run go vet
uses: https://codeflow.dananglin.me.uk/actions/mage-ci@main
with:
target: govet
style:
name: Style
if: ${{ ! github.event.pull_request.draft }}
runs-on: docker
steps:
- name: Checkout Repository
uses: https://code.forgejo.org/actions/checkout@v4
- name: Check formatting
uses: https://codeflow.dananglin.me.uk/actions/mage-ci@main
with:
target: gofmt
env:
PROJECT_FAIL_ON_FORMATTING: 1
- name: Run staticcheck
uses: https://codeflow.dananglin.me.uk/actions/mage-ci@main
with:
target: staticcheck