add 'week' and 'weeks' to Arabic locale #942
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: tests | |
on: | |
pull_request: # Run on all pull requests | |
push: # Run only on pushes to master | |
branches: | |
- master | |
schedule: # Run monthly | |
- cron: "0 0 1 * *" | |
jobs: | |
unit-tests: | |
name: ${{ matrix.os }} (${{ matrix.python-version }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["pypy-3.9", "3.8", "3.9", "3.10", "3.11", "3.12-dev"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
exclude: | |
# pypy3 randomly fails on Windows builds | |
- os: windows-latest | |
python-version: "pypy-3.9" | |
include: | |
- os: ubuntu-latest | |
path: ~/.cache/pip | |
- os: macos-latest | |
path: ~/Library/Caches/pip | |
- os: windows-latest | |
path: ~\AppData\Local\pip\Cache | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache pip | |
uses: actions/cache@v3 | |
with: | |
path: ${{ matrix.path }} | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} | |
restore-keys: ${{ runner.os }}-pip- | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -U pip setuptools wheel | |
pip install -U tox tox-gh-actions | |
- name: Test with tox | |
run: tox | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: coverage.xml | |
linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} | |
restore-keys: ${{ runner.os }}-pip- | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pre-commit | |
key: ${{ runner.os }}-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml') }} | |
restore-keys: ${{ runner.os }}-pre-commit- | |
- name: Set up Python ${{ runner.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
pip install -U pip setuptools wheel | |
pip install -U tox | |
- name: Lint code | |
run: tox -e lint -- --show-diff-on-failure | |
- name: Lint docs | |
run: tox -e docs |