Skip to content

ci: try using gha

ci: try using gha #8

Workflow file for this run

name: Bors CI
on:
push:
branches:
- staging
- trying
- ci
jobs:
# lint-ci:
# uses: ./.github/workflows/lint.yml
int-ci:
uses: ./.github/workflows/unit-int.yml
bdd-ci:
uses: ./.github/workflows/bdd.yml
# image-ci:
# uses: ./.github/workflows/image-pr.yml
bors-ci:
if: ${{ success() }}
needs:
# - lint-ci
- int-ci
- bdd-ci
# - image-ci
runs-on: ubuntu-latest
steps:
- name: CI succeeded
run: exit 0