Does the workflow thing work for PR's ? #84
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Build and test | |
on: | |
push: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11", "3.12" ] | |
# reduced matrix for ci | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install -r requirements-dev.txt | |
shell: bash | |
- name: Run integrity checks | |
env: | |
DATATRAILS_URL: ${{ vars.DATATRAILS_URL }} | |
DATATRAILS_CLIENT_ID: ${{ vars.DATATRAILS_CLIENT_ID }} | |
DATATRAILS_CLIENT_SECRET: ${{ secrets.DATATRAILS_CLIENT_SECRET }} | |
run: | | |
ruff check datatrails_scitt_samples unittests | |
python3 -m black datatrails_scitt_samples unittests | |
modified=$(git status -s | wc -l) | |
if [ $modified -gt 0 ] | |
then | |
echo "there are $modified files that must be reformatted" | |
echo "DISABLED guard due to mismatch with local environment" | |
# exit 1 | |
fi | |
python3 -m unittest | |
shell: bash | |
- name: Run type-hint checks | |
if: ${{ matrix.python-version != '3.12' }} | |
run: | | |
python3 -m pyright --stats datatrails_scitt_samples | |
shell: bash | |
- uses: pypa/[email protected] | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
with: | |
# GHSA-wj6h-64fc-37mp - python-ecdsa will not be fixed by maintainers | |
ignore-vulns: | | |
GHSA-wj6h-64fc-37mp | |
inputs: requirements.txt | |