Drop md5sum column from Package model (#221) #94
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
on: [pull_request, push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: archlinux/archlinux:latest | |
steps: | |
- name: Install dependencies | |
run: > | |
pacman -Syu --noconfirm git make python python-authlib python-isort python-pytest python-pytest-cov | |
python-sqlalchemy python-sqlalchemy-continuum python-flask python-flask-sqlalchemy python-flask-wtf | |
python-flask-login python-flask-migrate python-flask-talisman python-email-validator python-feedgen | |
python-pytz python-requests python-scrypt python-markupsafe pyalpm sqlite | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: | | |
git config --global --add safe.directory /__w/arch-security-tracker/arch-security-tracker | |
python3 -m py_compile $(git ls-files '*.py') | |
make test |