Merge pull request #67 from nattvara/add-copy-btn-to-assignments #199
Workflow file for this run
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
name: Test | |
on: push | |
jobs: | |
test_python: | |
name: Python Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
cache: 'pip' | |
python-version: '3.10' | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt | |
python setup.py develop | |
# Install FFmpeg | |
sudo apt-get -y update | |
sudo apt-get install -y ffmpeg | |
- name: Create Testing Environment | |
run: | | |
cp .env.example .env | |
- name: Test with PyTest | |
run: | | |
python -m pytest | |
lint_python: | |
name: Lint Pyton files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Dependencies | |
run: | | |
pip install flake8 | |
- name: Run flake8 | |
run: | | |
flake8 . --count --max-complexity=20 --max-line-length=127 --statistics --exclude venv | |
lint_ts: | |
name: Lint Typescript files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: '7.27.0' | |
- name: Install Modules | |
run: | | |
cd web-ui && pnpm install | |
- name: Run eslint | |
run: cd web-ui && npm run lint |