Merge pull request #119 from caffo/fix-unzipped-files #129
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: "roam-to-git tests.py" | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ macos-latest, ubuntu-20.04, windows-latest] | |
python: [ 3.13 ] | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON: ${{ matrix.python }} | |
runs-on: ${{ matrix.os }} | |
name: Test | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3.5.2 | |
- name: Set up Python | |
uses: actions/setup-python@v4.6.0 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Setup dependencies | |
run: | | |
python --version | |
python -m pip install -r requirements.txt | |
python -m pip install mypy | |
- name: Run backup | |
run: ./tests.py |