Skip to content

More experiments

More experiments #504

Workflow file for this run

name: test suite
on:
push:
branches: [master, conditional-test-run]
pull_request:
jobs:
changed-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: changed-files
with:
fetch-depth: 2 # OR "2" -> To retrieve the preceding commit.
- run: git log
- name: List all changed files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "$file was changed"
done
# pyright:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: 3.x
# - uses: actions/cache@v3
# with:
# path: ~/.cache/pip
# key: pip-pyright
# - name: Install dependencies
# run: pip install -e . pyright pytest
# - name: Run pyright
# run: pyright --verifytypes anyio
#
# test:
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", pypy-3.10]
# include:
# - os: macos-latest
# python-version: "3.8"
# - os: macos-latest
# python-version: "3.11"
# - os: windows-latest
# python-version: "3.8"
# - os: windows-latest
# python-version: "3.11"
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# allow-prereleases: true
# cache: pip
# cache-dependency-path: pyproject.toml
# - name: Install dependencies
# run: pip install -e .[test]
# - name: Test with pytest
# run: |
# coverage run -m pytest -v
# coverage xml
# timeout-minutes: 5
# env:
# PYTEST_DISABLE_PLUGIN_AUTOLOAD: 1
# - name: Upload Coverage
# uses: coverallsapp/github-action@v2
# with:
# parallel: true
# file: coverage.xml
#
# coveralls:
# name: Finish Coveralls
# needs: test
# runs-on: ubuntu-latest
# steps:
# - name: Finished
# uses: coverallsapp/github-action@v2
# with:
# parallel-finished: true