Test #61
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: Test | |
on: | |
push: | |
schedule: | |
- cron: "0 9 * * SUN" | |
jobs: | |
Test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.10", "3.11", "3.12", "3.13"] | |
defaults: | |
run: | |
shell: bash | |
name: ${{ matrix.os }} with py${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set Project Name | |
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: bigladder/github-actions/setup-python-poetry@main | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run tasks # doit -v 1 for now because of issue with Windows output stream character maps | |
run: | | |
poetry run doit -v 1 |