generated from langrenn-sprint/event-service
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 980 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 }}
DB_USER: ${{ secrets.DB_USER }}
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}