Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cccvs committed Apr 12, 2024
1 parent 24542eb commit 4e7a9d2
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,16 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
add-pip-as-python-dependency: true
channels: conda-forge, defaults
auto-update-conda: true
show-channel-urls: true
- name: Install BlueFogLite
run: |
conda info -e
python --version
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip list
python -m pip install .
cat tools/requirements_dev.txt | grep pytest | xargs python -m pip install
- name: Unit Test
Expand All @@ -92,23 +88,18 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
add-pip-as-python-dependency: true
channels: conda-forge, defaults
auto-update-conda: true
show-channel-urls: true

- name: Install brew coreutils
run: brew install coreutils # for timeout command
- name: Install BlueFogLite
run: |
conda info -e
python --version
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip list
python -m pip install .
cat tools/requirements_dev.txt | grep pytest | xargs python -m pip install
- name: Unit Test
Expand Down

0 comments on commit 4e7a9d2

Please sign in to comment.