40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
name: Continuous Integration
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
if: github.repository_owner == 'TandoorRecipes'
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 4
|
|
matrix:
|
|
python-version: ['3.10']
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: '3.10'
|
|
# Build Vue frontend
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- name: Install Vue dependencies
|
|
working-directory: ./vue
|
|
run: yarn install
|
|
- name: Build Vue dependencies
|
|
working-directory: ./vue
|
|
run: yarn build
|
|
- name: Install Django dependencies
|
|
run: |
|
|
sudo apt-get install -y libsasl2-dev python-dev libldap2-dev libssl-dev
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
python3 manage.py collectstatic --noinput
|
|
python3 manage.py collectstatic_js_reverse
|
|
- name: Django Testing project
|
|
run: |
|
|
pytest
|