Skip to content

fixup! Ticket #4170: implement CI via GitHub Actions #30

fixup! Ticket #4170: implement CI via GitHub Actions

fixup! Ticket #4170: implement CI via GitHub Actions #30

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build-ubuntu:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/ci-ubuntu
build-macos:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: macos-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/ci-macos