Skip to content

Added ruff, updated python compatibility #20

Added ruff, updated python compatibility

Added ruff, updated python compatibility #20

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- "develop"
- "main"
# Cancel existing run if a new one is started
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --all-files
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: 1.8.3
- name: Install dependencies with Poetry
run: |
poetry --version
poetry install
- name: Save Salesforce config from secrets
run: |
echo "${{ secrets.SALESFORCE_CONFIG }}" > salesforce-config-dev.json
- name: Run PyTest
run: |
poetry run pytest
# mypy --install-types --non-interactive --show-error-codes .
# mypy: