Skip to content

ci: move pinned actions to Node 24 #2

ci: move pinned actions to Node 24

ci: move pinned actions to Node 24 #2

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.12"
cache: pip
- run: python -m pip install -e ".[dev]"
- run: python -m ruff check .
- run: python -m mypy
- run: python -m pytest
- run: docker build --platform linux/amd64 -t cas-reference-product:ci .