Skip to content

Merge pull request #245 from crytic/dependabot/github_actions/sigstor… #419

Merge pull request #245 from crytic/dependabot/github_actions/sigstor…

Merge pull request #245 from crytic/dependabot/github_actions/sigstor… #419

Workflow file for this run

name: CI
on:
push:
branches:
- master
- dev
pull_request:
schedule:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
tests:
name: CI (Python ${{ matrix.python }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: ["ubuntu-latest", "macos-latest", "windows-2022"]
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
- name: Install solc-select and test dependencies
run: |
uv sync --extra dev
- name: Run Tests
run: |
uv run python -m pytest tests/ -v --tb=short -n auto