forked from City-of-Helsinki/linkedevents
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from City-of-Turku/development
Release tku-v1.3
- Loading branch information
Showing
56 changed files
with
3,930 additions
and
397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Linkedevents tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- production | ||
- development | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
runs-on: [ ubuntu-20.04 ] | ||
services: | ||
postgres: | ||
image: postgis/postgis:11-2.5 | ||
env: | ||
POSTGRES_USER: linkedevents | ||
POSTGRES_PASSWORD: linkedevents | ||
POSTGRES_DB: linkedevents | ||
SECRET_KEY: linkedevents_secret | ||
DEBUG: true | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
strategy: | ||
matrix: | ||
python-version: ["3.7", "3.8", "3.9"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Ubuntu packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install gettext python-dev libpq-dev gdal-bin -y | ||
- name: Install requirements | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install -r requirements-dev.txt | ||
- name: Apply migrations | ||
env: | ||
DATABASE_URL: postgis://linkedevents:linkedevents@localhost/linkedevents | ||
DEBUG: true | ||
SECRET_KEY: linkedevents_secret | ||
run: | | ||
python3 manage.py migrate | ||
- name: Compile translations | ||
run: | | ||
python3 manage.py compilemessages | ||
- name: Run tests | ||
env: | ||
DATABASE_URL: postgis://linkedevents:linkedevents@localhost/linkedevents | ||
DEBUG: true | ||
SECRET_KEY: linkedevents_secret | ||
run: | | ||
pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
*.sqlite3 | ||
*.pickle | ||
local_settings.py | ||
static/CACHE | ||
static/ | ||
media/ | ||
.vagrant/ | ||
.idea | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.