This commit is contained in:
nocturn9x 2021-02-26 14:01:20 +01:00
commit 303a608e56
1 changed files with 26 additions and 0 deletions

26
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,26 @@
# Automatically runs tests
name: Run tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v2.2.1
with:
# We test using a reasonably modern Python version
python-version: 3.8.0
architecture: x64
- uses: japl-lang/japl@v2
- name: Run production-mode tests
run: ./build.py --profile resources/profiles/production.json
- name: Run developmet tests
run: ./build.py --profile resources/profiles/production.json