mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-03-11 17:48:44 -05:00
27 lines
386 B
YAML
27 lines
386 B
YAML
name: ci
|
|
|
|
env:
|
|
DO_NOT_TRACK: 1
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
tags:
|
|
- v*
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
uses: ./.github/workflows/test.yml
|
|
secrets: inherit
|
|
|
|
release:
|
|
name: Release
|
|
if: ${{ github.ref_type == 'tag' || github.ref_name == 'main' }}
|
|
uses: ./.github/workflows/release.yml
|
|
needs:
|
|
- test
|
|
secrets: inherit
|