Skip to content

chore(deps): bump idna from 3.6 to 3.7 #7

chore(deps): bump idna from 3.6 to 3.7

chore(deps): bump idna from 3.6 to 3.7 #7

Workflow file for this run

name: Install, build and test
on:
pull_request:
types: [ready_for_review, opened, reopened, synchronize]
branches:
- main
jobs:
install-build-and-test:
name: Install, build and test
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
architecture: x64
- name: Install dependencies
run: |-
pipx install poetry==1.7.1
pipx install nox==2022.11.21
pipx inject nox nox-poetry
- name: Build image and test with nox
run: |-
nox
env:
JWT_SECRET: ${{ secrets.JWT_SECRET }}
ADMIN_USERNAME: ${{ secrets.ADMIN_USERNAME }}
ADMIN_PASSWORD: ${{ secrets.ADMIN_PASSWORD }}