-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (50 loc) · 1.36 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
name: CI
on: [push]
jobs:
install:
name: Install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: pipenv
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies, check that lockfile is synced
run: pipenv install --dev --deploy
check:
name: Check Formatting and Types
runs-on: ubuntu-latest
needs:
- install
if: success()
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: pipenv
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies from lockfile
run: pipenv sync
- name: Run Black
run: pipenv run black --check progcomp
- name: Run MyPy
run: pipenv run mypy progcomp
docker_publish:
name: Publish built docker container
runs-on: "ubuntu-latest"
needs:
- check
if: success() && github.ref_name == 'main'
steps:
- uses: actions/checkout@v3
# https://github.com/marketplace/actions/push-to-ghcr
- name: Build and publish a Docker image for progcomp server
uses: macbre/push-to-ghcr@v12
with:
image_name: uwcs/progcomp-web
github_token: ${{ secrets.GITHUB_TOKEN }}