Skip to content

Commit a1b2f7f

Browse files
authored
Create backend-ci.yml
1 parent b986b3c commit a1b2f7f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/backend-ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Backend CI workflow
2+
3+
on:
4+
push:
5+
paths:
6+
- chartlets.py/**
7+
8+
jobs:
9+
backend:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: git-checkout chartlets
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Micromamba
16+
uses: mamba-org/setup-micromamba@v1
17+
with:
18+
environment-file: chartlets.py/environment.yml
19+
20+
- name: Run unit tests
21+
shell: bash -l {0}
22+
run: |
23+
cd chartlets.py
24+
pytest

0 commit comments

Comments
 (0)