mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-04-28 02:18:08 -05:00
24 lines
362 B
YAML
24 lines
362 B
YAML
name: ci
|
|
|
|
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
|