Skip to content

Fix cache-key collision and verify false-success; add tests + CI (0.4.0) #1

Fix cache-key collision and verify false-success; add tests + CI (0.4.0)

Fix cache-key collision and verify false-success; add tests + CI (0.4.0) #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: pip install pyyaml
- name: Show tool versions
run: |
python --version
git --version
- name: Run tests
run: python -m unittest discover -s tests -v