21 lines
326 B
YAML
21 lines
326 B
YAML
name: Community CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "feat/**"
|
|
|
|
jobs:
|
|
rust:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: TODO
|
|
run: |
|
|
echo "Move Community CI logic here from the split monorepo."
|
|
exit 1
|