Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mole99 committed Mar 12, 2024
1 parent 4e92588 commit d4415df
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
with:
python-version: "3.8"
- name: Install Dependencies
run: make venv
run: make dependencies
- name: Lint
run: |
PATH=$PWD/venv/bin:$PATH make lint
make lint
build:
runs-on: ubuntu-22.04
Expand All @@ -45,16 +45,16 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: make venv
run: make dependencies
- name: Build Package
run: |
PATH=$PWD/venv/bin:$PATH make build
make build
- name: Install Package
run: |
PATH=$PWD/venv/bin:$PATH make install
make install
- name: Run CACE
run: |
PATH=$PWD/venv/bin:$PATH cace -help
cace -help
docs:
runs-on: ubuntu-22.04
Expand All @@ -68,13 +68,7 @@ jobs:
with:
python-version: 3.8
- name: Install Dependencies
run: make venv
- name: Build Package
run: |
PATH=$PWD/venv/bin:$PATH make build
- name: Install Package
run: |
PATH=$PWD/venv/bin:$PATH make install
run: make dependencies
- name: Build Documentation
run: |
make docs

0 comments on commit d4415df

Please sign in to comment.