-
Notifications
You must be signed in to change notification settings - Fork 7
134 lines (113 loc) · 4.17 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: "Tests"
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
# Cancel a workflow from the same PR, branch or tag when a new workflow is triggered.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: "Run tests and SonarCloud scan"
runs-on: ubuntu-latest
env:
POETRY_VERSION: 1.7.1
services:
postgres:
image: postgis/postgis:13-3.3-alpine
env:
POSTGRES_USER: tvp
POSTGRES_PASSWORD: tvp
POSTGRES_DB: tvp
DEBUG: true
SECRET_KEY: build_secret
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 5s
--health-timeout 5s
--health-retries 10
ports:
- 5432:5432
redis:
image: redis:7-alpine
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 5s
--health-timeout 5s
--health-retries 10
ports:
- 6379:6379
elastic:
image: docker.elastic.co/elasticsearch/elasticsearch:8.8.0
env:
xpack.security.enabled: false
discovery.type: single-node
ports:
- 9200:9200
steps:
- name: "Checkout code"
uses: actions/checkout@v4
with:
# Disable shallow cloning to improve relevancy of reporting in SonarCloud
fetch-depth: 0
- name: "Set up python"
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: "Load cached poetry installation"
uses: actions/cache@v4
id: poetry-cache
with:
path: |
/home/runner/.local/share/pypoetry
/home/runner/.local/bin
key: cache-poetry-${{ env.POETRY_VERSION }}-python${{ steps.setup-python.outputs.python-version }}-v1
- name: "Install poetry"
if: steps.poetry-cache.outputs.cache-hit != 'true'
run: curl -sSL https://install.python-poetry.org | POETRY_VERSION=${{ env.POETRY_VERSION }} python - -y
- name: "Add poetry to PATH"
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: "Configure poetry"
run: poetry config virtualenvs.in-project true
- name: "Install additional libraries"
run: |
sudo apt-get update
sudo apt install -y --no-install-recommends gdal-bin gettext
- name: "Load cached poetry environment"
uses: actions/cache@v4
with:
path: .venv
key: cache-venv-python${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-v1
- name: "Install dependencies"
run: poetry install
- name: "Test for migration issues"
run: poetry run python manage.py makemigrations --check --no-color --no-input --dry-run
env:
DJANGO_SETTINGS_ENVIRONMENT: CI
DATABASE_URL: postgis://tvp:tvp@localhost:5432/tvp
- name: "Test for missing translation"
run: poetry run python -m tilavarauspalvelu.hooks.translations_done
env:
DJANGO_SETTINGS_ENVIRONMENT: CI
DATABASE_URL: postgis://tvp:tvp@localhost:5432/tvp
- name: "Run pytest with coverage"
run: poetry run pytest --cov=. --cov-report=xml --cov-branch --disable-warnings --skip-slow
env:
DJANGO_SETTINGS_ENVIRONMENT: AutomatedTests
# Without this workaround, SonarCloud reports a warning about an incorrect source path
- name: "Override coverage report source path for SonarCloud"
run: sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' coverage.xml
- name: "SonarCloud Scan"
uses: SonarSource/sonarcloud-github-action@master
# Dependabot cannot access repository secrets (would need its own secrets),
# so we just skip SonarCloud analysis for dependabot PRs.
if: github.actor != 'dependabot[bot]'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}