-
Notifications
You must be signed in to change notification settings - Fork 12
54 lines (52 loc) · 1.5 KB
/
ci.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
49
50
51
52
53
54
on: push
jobs:
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: pre-commit/[email protected]
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
- name: Test with pytest
run: python -m pytest
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build docs
uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"
pre-build-command: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
publish:
needs: qa
name: Build and push Docker image for get_weboutputs.py
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and push Docker image
uses: docker/build-push-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
repository: imperialcollegelondon/calc2050_get_weboutputs
dockerfile: scripts/Dockerfile_weboutputs
path: scripts
tags: latest