We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e26c4b2 commit e6a2df8Copy full SHA for e6a2df8
1 file changed
.github/workflows/chartlets-ci.yml
@@ -0,0 +1,26 @@
1
+name: Chartlets CI workflow
2
+on: [push]
3
+
4
+jobs:
5
+ backend_chartlets-py:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: git-checkout chartlets
9
+ uses: actions/checkout@v4
10
+ - name: Set up Micromamba
11
+ uses: mamba-org/setup-micromamba@v1
12
+ with:
13
+ micromamba-version: '1.4.8-0'
14
+ environment-file: chartlets.py/environment.yml
15
+ init-shell: >-
16
+ bash
17
+ cache-environment: false
18
+ post-cleanup: 'all'
19
+ - name: Install dependencies
20
+ run: |
21
+ cd chartlets.py
22
+ mamba env install
23
+ - name: Run tests
24
25
26
+ pytest
0 commit comments