Skip to content

Commit

Permalink
Workflows updated again
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgroot42 committed Jan 10, 2024
1 parent 3e6ba5e commit 6e43885
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ on:
- main # or your default branch

jobs:
build-documentation:
setup-environment:
runs-on: ubuntu-latest
uses: ./.github/workflows/setup_env.yml

build-documentation:
runs-on: ubuntu-latest
needs: setup-environment

steps:
- name: Generate Documentation
run: |
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ name: Tests
on: [push, pull_request]

jobs:
test:
setup-environment:
runs-on: ubuntu-latest
uses: ./.github/workflows/setup_env.yml

test:
runs-on: ubuntu-latest
needs: setup-environment

steps:
- name: Run tests
run: |
pytest

0 comments on commit 6e43885

Please sign in to comment.