This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (49 loc) · 1.72 KB
/
build.yaml
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
# Continuous integration build for pyGRAZ website.
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10"]
env:
MAIN_PYTHON_VERSION: "3.8" # same as Ubuntu 20 LTS
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
pip install -r requirements/testing.txt
- name: Run the test suite
run: |
coverage run manage-testing.py test pygraz_website.apps.accounts pygraz_website.apps.companies pygraz_website.apps.core pygraz_website.apps.meetups
- name: Build coverage report
run: |
coverage html
coverage report
check-style:
runs-on: ubuntu-latest
# Disable pre-commit check on master to prevent "no-commit-to-branch" from failing.
if: github.ref != 'refs/heads/master' && github.ref != 'refs/heads/develop'
steps:
- uses: actions/checkout@v3
- name: Install pre-commit
run: |
sudo apt-get install python3
python -m pip install --upgrade pip
pip install pre-commit
- name: Load cached pre-commit
id: cached-pre-commit
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install pre-commit hooks
if: steps.cached-pre-commit.outputs.cache-hit != 'true'
run: pre-commit install --install-hooks
- name: Check coding style
run: pre-commit run --all-files