Merge pull request #1395 from OpenDataServices/2024-10-03 #316
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, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ '3.11'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }}-${{ matrix.python-version }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install requirements_dev.txt | |
run: pip install -r requirements_dev.txt | |
- name: Install Ubuntu Translation Libraries | |
run: sudo apt install gettext | |
- name: Test IATI | |
run: py.test -n 2 cove_iati --cov-append --cov | |
- name: Migrate Database | |
run: python manage.py migrate | |
- name: Compile Messages | |
run: python manage.py compilemessages | |
- name: Report to coveralls | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: coveralls --service=github |