Release 2.5.3 #167
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
# | |
# trans-tool | |
# The translation files checker and syncing tool. | |
# | |
# Copyright ©2021 Marcin Orlowski <mail [@] MarcinOrlowski.com> | |
# https://github.com/MarcinOrlowski/trans-tool/ | |
# | |
name: "Unit tests" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master, dev ] | |
jobs: | |
unittests: | |
name: "Testing" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [ ubuntu-latest, macos-latest, windows-latest ] | |
os: [ ubuntu-latest ] | |
python: [3.6, 3.7, 3.8, 3.9] | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: "Checkout sources" | |
uses: actions/checkout@v2 | |
# https://github.com/marketplace/actions/paths-changes-filter | |
- name: "Look for changed files..." | |
uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
srcs: | |
- '**/*.py' | |
- name: "Setup Python" | |
if: steps.filter.outputs.srcs == 'true' | |
uses: actions/setup-python@master | |
with: | |
python-version: ${{ matrix.python }} | |
- name: "Running unit tests..." | |
if: steps.filter.outputs.srcs == 'true' | |
run: python -m unittest discover tests |