CI #1151
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '5 1 * * *' # every day at 01:05 | |
workflow_dispatch: | |
inputs: | |
fsspec: | |
description: fsspec version to use? | |
required: false | |
default: default | |
type: choice | |
options: | |
- default | |
- upstream | |
- lower-bound | |
permissions: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: "1" | |
jobs: | |
tests: | |
timeout-minutes: 15 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
pyv: ["3.8", "3.9", "3.10", "3.11"] | |
env: | |
HATCH_ENV: ${{ inputs.fsspec || (github.event_name == 'schedule' && 'upstream' || 'default')}} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.pyv }} | |
- run: python -m pip install --upgrade hatch | |
- run: hatch version | |
- run: hatch run lint | |
- run: hatch run cov-xml | |
- uses: codecov/codecov-action@v3 | |
- run: hatch build | |
- run: hatch run docs | |
check: | |
if: always() | |
needs: [tests] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |