Skip to content

Merge pull request #200 from neutrinoceros/dependabot/pip/requirement… #462

Merge pull request #200 from neutrinoceros/dependabot/pip/requirement…

Merge pull request #200 from neutrinoceros/dependabot/pip/requirement… #462

Workflow file for this run

name: CI (bleeding edge)
on:
push:
branches:
- main
schedule:
# run this every wednesday at 3 am UTC
- cron: 0 3 * * 3
pull_request:
paths:
- .github/workflows/bleeding_edge.yml
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install git+https://github.com/willmcgugan/rich.git
python -m pip install git+https://github.com/pytest-dev/pytest.git
python -m pip install schema
- name: Build
run: python -m pip install .
- name: Run tests
run: pytest