Skip to content

Feat: Implement jinja2 for variable management #231

Feat: Implement jinja2 for variable management

Feat: Implement jinja2 for variable management #231

Workflow file for this run

name: Run tests on all supported platforms
on:
pull_request: ~
workflow_dispatch: ~
jobs:
test:
name: Run test on ${{ matrix.os }} with ${{ matrix.py_ver }}
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COINSTATS_API_KEY: ${{ secrets.COINSTATS_API_KEY }}
strategy:
matrix:
os:
- macOS-latest
- macos-14
- macos-13
- ubuntu-latest
- ubuntu-24.04
- ubuntu-22.04
- windows-latest
- windows-2022
- windows-2019
runs-on: ${{ matrix.os }}
if: ${{ ! github.event.pull_request.draft }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Run tests
run: py.test -s --ignore=chk