Skip to content

Build and test using latest available dependencies #5

Build and test using latest available dependencies

Build and test using latest available dependencies #5

name: Build and test using latest available dependencies
on:
workflow_dispatch:
schedule:
- cron: '5 5 5/15 * *' # On the 5th and 20th of each month at 5:05
env:
FORCE_COLOR: 3
# Colors for nox
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up nox
uses: wntrblm/[email protected]
- name: Run nox session
run: nox -s build_and_test_on_latest_env editable_build_and_test_on_latest_env