@@ -15,65 +15,65 @@ concurrency:
15
15
cancel-in-progress : true
16
16
17
17
jobs :
18
- build :
19
- name : Build (${{ matrix.python-version }}, ${{ matrix.os }})
20
- runs-on : ${{ matrix.os }}
21
- defaults :
22
- run :
23
- shell : bash -l {0}
24
- strategy :
25
- fail-fast : false
26
- matrix :
27
- os : ["ubuntu-latest"]
28
- python-version : ["3.10"]
29
- steps :
30
- - uses : actions/checkout@v3
31
- with :
32
- fetch-depth : 0 # Fetch all history for all branches and tags.
33
- - name : Set environment variables
34
- run : |
35
- echo "CONDA_ENV_FILE=ci/environment.yml" >> $GITHUB_ENV
36
- echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV
37
- - name : Cache conda
38
- uses : actions/cache@v3
39
- with :
40
- path : ~/conda_pkgs_dir
41
- key :
42
- ${{ runner.os }}-conda-py${{ matrix.python-version }}-${{
43
- hashFiles('ci/**.yml') }}
44
- - uses : conda-incubator/setup-miniconda@v2
45
- with :
46
- channels : conda-forge
47
- channel-priority : strict
48
- mamba-version : " *"
49
- activate-environment : flox-tests
50
- auto-update-conda : false
51
- python-version : ${{ matrix.python-version }}
52
- use-only-tar-bz2 : true
18
+ # build:
19
+ # name: Build (${{ matrix.python-version }}, ${{ matrix.os }})
20
+ # runs-on: ${{ matrix.os }}
21
+ # defaults:
22
+ # run:
23
+ # shell: bash -l {0}
24
+ # strategy:
25
+ # fail-fast: false
26
+ # matrix:
27
+ # os: ["ubuntu-latest"]
28
+ # python-version: ["3.10"]
29
+ # steps:
30
+ # - uses: actions/checkout@v3
31
+ # with:
32
+ # fetch-depth: 0 # Fetch all history for all branches and tags.
33
+ # - name: Set environment variables
34
+ # run: |
35
+ # echo "CONDA_ENV_FILE=ci/environment.yml" >> $GITHUB_ENV
36
+ # echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV
37
+ # - name: Cache conda
38
+ # uses: actions/cache@v3
39
+ # with:
40
+ # path: ~/conda_pkgs_dir
41
+ # key:
42
+ # ${{ runner.os }}-conda-py${{ matrix.python-version }}-${{
43
+ # hashFiles('ci/**.yml') }}
44
+ # - uses: conda-incubator/setup-miniconda@v2
45
+ # with:
46
+ # channels: conda-forge
47
+ # channel-priority: strict
48
+ # mamba-version: "*"
49
+ # activate-environment: flox-tests
50
+ # auto-update-conda: false
51
+ # python-version: ${{ matrix.python-version }}
52
+ # use-only-tar-bz2: true
53
53
54
- - name : Install conda dependencies
55
- run : |
56
- mamba env update -f $CONDA_ENV_FILE
54
+ # - name: Install conda dependencies
55
+ # run: |
56
+ # mamba env update -f $CONDA_ENV_FILE
57
57
58
- - name : Set up conda environment
59
- shell : bash -l {0}
60
- run : |
61
- python -m pip install -e .
62
- conda list
58
+ # - name: Set up conda environment
59
+ # shell: bash -l {0}
60
+ # run: |
61
+ # python -m pip install -e .
62
+ # conda list
63
63
64
- - name : Run Tests
65
- shell : bash -l {0}
66
- run : |
67
- pytest -n auto --cov=./ --cov-report=xml
64
+ # - name: Run Tests
65
+ # shell: bash -l {0}
66
+ # run: |
67
+ # pytest -n auto --cov=./ --cov-report=xml
68
68
69
- - name : Upload code coverage to Codecov
70
-
71
- with :
72
- file : ./coverage.xml
73
- flags : unittests
74
- env_vars : RUNNER_OS,PYTHON_VERSION
75
- name : codecov-umbrella
76
- fail_ci_if_error : false
69
+ # - name: Upload code coverage to Codecov
70
+
71
+ # with:
72
+ # file: ./coverage.xml
73
+ # flags: unittests
74
+ # env_vars: RUNNER_OS,PYTHON_VERSION
75
+ # name: codecov-umbrella
76
+ # fail_ci_if_error: false
77
77
78
78
# upstream-dev:
79
79
# name: upstream-dev
0 commit comments