mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 14:14:18 +00:00
24 lines
573 B
YAML
24 lines
573 B
YAML
name: linkding CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
run_tests:
|
|
name: Run Django Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.7
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 14
|
|
- name: Install Python dependencies
|
|
run: pip install -r requirements.txt
|
|
- name: Install Node dependencies
|
|
run: npm install
|
|
- name: Run tests
|
|
run: python manage.py test
|