We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 921c353 commit 8677b93Copy full SHA for 8677b93
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+# This workflow will install Python dependencies, run tests and lint with a single version of Python
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3
+
4
+name: CI
5
6
+on: [pull_request, push]
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
18
+ - name: Set up Conda
19
+ uses: conda-incubator/setup-miniconda@v2
20
+ with:
21
+ activate-environment: hisp-env
22
+ miniforge-version: latest
23
+ channels: conda-forge
24
+ environment-file: environment.yml
25
26
+ - name: Run example
27
+ shell: bash -l {0}
28
+ run: python simple_mb.py
0 commit comments