Skip to content

Merge pull request #13 from step-security-bot/stepsecurity_remediatio… #127

Merge pull request #13 from step-security-bot/stepsecurity_remediatio…

Merge pull request #13 from step-security-bot/stepsecurity_remediatio… #127

Workflow file for this run

name: Python package
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements.txt
# You can test your matrix by printing the current Python version
- name: Run the tests with pytest
run: make ci
env:
NEON_API_KEY: ${{ secrets.NEON_API_KEY }}