Skip to content

Commit 0c6ec03

Browse files
committed
Add Codeowners, basic CI workflow
1 parent 5b6b35c commit 0c6ec03

3 files changed

Lines changed: 50 additions & 0 deletions

File tree

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# See https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-syntax
2+
3+
# Global owners
4+
#
5+
@xzhu0428

.github/workflows/test.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Copyright (c) 2025 Boston Dynamics AI Institute LLC. All rights reserved.
2+
3+
name: Build and Test
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
pull_request:
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-22.04
18+
permissions:
19+
contents: read
20+
packages: write
21+
id-token: write
22+
strategy:
23+
fail-fast: false
24+
steps:
25+
- name: Checkout code
26+
uses: actions/checkout@v5
27+
28+
- name: Set up Python
29+
uses: actions/setup-python@v6
30+
with:
31+
python-version: 3.10
32+
33+
- name: Install pixi
34+
uses: prefix-dev/setup-pixi@v0.9.0
35+
with:
36+
pixi-version: v0.55.0
37+
cache: true
38+
auth-host: prefix.dev
39+
40+
- name: Build
41+
run: |
42+
pixi install
43+
pixi install

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,3 +213,5 @@ __marimo__/
213213
# logs
214214
logs/
215215
outputs/
216+
217+
.DS_Store

0 commit comments

Comments
 (0)