Skip to content

actions:

actions: #3

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Cactus repository
uses: actions/checkout@v4
with:
path: csky
- name: Checkout Crux repository as a sibling
uses: actions/checkout@v4
with:
repository: meslab/crux # Replace with actual org/user
path: crux
- name: Build Crux
run: make -C crux
- name: Build CSky
run: make -C csky