-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (37 loc) · 1.12 KB
/
ci-full.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
39
40
41
42
43
44
45
46
47
48
name: ci-full
on:
# only pushes to the protected branch i.e. `main` should trigger this flow.
# enabling this flow to be triggered on push to **unprotected** branches
# or Pull Requests to **any** branch risks exposing the secrets for any
# unapproved changes (basically RCE)
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
# Set up operating system
runs-on: ubuntu-latest
environment: integration-testing
# Define job steps
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Check-out repository
uses: actions/checkout@v3
- name: Install poetry
uses: snok/install-poetry@v1
- name: Install package
run: poetry install
- name: Install pandoc
run: sudo apt-get update && sudo apt-get install -y pandoc
- name: Install tectonic
run: sudo snap refresh && sudo snap install tectonic
- name: Test with pytest
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: poetry run pytest --cov