mirror of
https://github.com/PaiGramTeam/EnkaNetwork.py.git
synced 2024-11-16 11:52:18 +00:00
19 lines
464 B
YAML
19 lines
464 B
YAML
name: "Check assets and verify"
|
|
on: [push]
|
|
jobs:
|
|
assests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v3
|
|
with:
|
|
python-version: "3.10"
|
|
- name: "Install dependencies"
|
|
run: |
|
|
pip install -r requirements.txt
|
|
- name: "Install pytest"
|
|
run: |
|
|
pip install pytest
|
|
- name: "Run tests"
|
|
run: |
|
|
python -m pytest test.py -v |