Skip to content

Commit

Permalink
Tidy up CI/CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcundill committed Oct 8, 2024
1 parent 13f980e commit 8eccbea
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,8 @@ jobs:
test:
runs-on: ubuntu-latest
needs: [detect-environments]
strategy:
matrix:
environment: ${{ fromJSON(needs.detect-environments.outputs.environments) }}
environment: ${{ matrix.environment }}
env:
ENVIRONMENT: ${{ matrix.environment }}
ENVIRONMENT: development
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -68,13 +63,8 @@ jobs:
with:
python-version: '3.10'

- run: |
pip install -r requirements/dev-requirements.txt
if: ${{ matrix.environment == 'development' }}
- run: |
pip install -r requirements/requirements.txt
if: ${{ matrix.environment != 'development' }}
- run: |
make dags/config.json
Expand Down

0 comments on commit 8eccbea

Please sign in to comment.