Skip to content

Commit ed70d41

Browse files
authored
Add Codeowners, basic CI workflow (#2)
1 parent 659f210 commit ed70d41

3 files changed

Lines changed: 52 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: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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:
18+
group: bdai-gh-large-runners
19+
permissions:
20+
contents: read
21+
packages: write
22+
id-token: write
23+
strategy:
24+
fail-fast: false
25+
steps:
26+
- name: Checkout code
27+
uses: actions/checkout@v5
28+
29+
- name: Set up Python
30+
uses: actions/setup-python@v6
31+
with:
32+
python-version: "3.10"
33+
34+
- name: Install pixi
35+
uses: prefix-dev/setup-pixi@v0.9.0
36+
with:
37+
pixi-version: v0.55.0
38+
cache: true
39+
auth-host: prefix.dev
40+
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}
41+
42+
- name: Build
43+
run: |
44+
pixi install
45+
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)