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 79cc450 commit f733532Copy full SHA for f733532
.github/workflows/build.yml
@@ -7,10 +7,13 @@ jobs:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v1
10
- - name: Install sage from conda
11
- run: |
12
- conda env create -n sage environment.yml
13
- conda activate sage
+ - uses: goanpeca/setup-miniconda@v1
+ with:
+ auto-update-conda: true
+ activate-environment: sage
14
+ environment-file: environment.yml
15
+ python-version: 3.7
16
+ auto-activate-base: false
17
- name: Test package
18
run: |
19
python3 setup.py test
0 commit comments