deps: bump @remix-run/node from 2.2.0 to 2.3.0 #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Python package | |
on: | |
push: | |
paths: | |
- 'utils/deltares_datasuite/**' | |
- '.github/workflows/**' | |
permissions: | |
contents: read | |
issues: read | |
checks: write | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.9'] | |
defaults: | |
run: | |
working-directory: ./utils/deltares_datasuite | |
env: | |
DATABASE_URL: 'postgresql://postgres:postgres@localhost:5432/remix' | |
SESSION_SECRET: super-duper-s3cret | |
NODE_VERSION: 18 | |
PYTHON_VERSION: 3.9 | |
POETRY_VERSION: 1.6.1 | |
AZURE_TENANT_ID: ${{ vars.ARM_TENANT_ID }} | |
AZURE_CLIENT_ID: ${{ vars.AZURE_APP_CLIENT_ID }} | |
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_APP_CLIENT_SECRET }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: make poetry-download | |
- name: Set up cache | |
uses: actions/[email protected] | |
with: | |
path: .venv | |
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }} | |
- name: Install dependencies | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry install | |
- name: Run style checks | |
run: | | |
make check-codestyle | |
# - name: Run webserver and db container | |
# working-directory: . | |
# run: docker compose -f docker-compose.yml -f docker-compose.ci.yml up -d --build --wait --quiet-pull | |
- name: Run tests | |
run: | | |
make test | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: | | |
**/test-results.xml | |
**/test-results/**/*.xml | |
**/test-results/**/*.json | |
- name: Run safety checks | |
run: | | |
make check-safety |