Skip to content

build: Explicitly install gettext. #78

build: Explicitly install gettext.

build: Explicitly install gettext. #78

Workflow file for this run

name: CI
on: [push]
jobs:
python-tests:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ ubuntu-20.04 ]
python-version: [ '3.8' ]
toxenv: [django32, django42, quality]
steps:
- name: Install system requirements
run: sudo apt-get install -y gettext
- uses: actions/checkout@v2
continue-on-error: true
- name: Python setup
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
run: |
pip install -r requirements/ci.txt
- name: Run Tests
env:
TOXENV: ${{ matrix.toxenv }}
run: tox