mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-13 23:27:16 +00:00
3aca790212
* Bump python version to 3.10 * Fix python version in CI config * Bump to python 3.10.6
24 lines
576 B
YAML
24 lines
576 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.10"
|
|
- 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
|