Prepare release 3.0.4 (#78) #23
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
name: Validation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
hygiene: | |
if: github.repository == 'microsoft/sarif-tools' | |
runs-on: ubuntu-latest | |
name: Hygiene | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install Poetry | |
run: pip install poetry | |
- name: Validate pyproject.toml and poetry.lock | |
run: poetry check | |
- name: Install dependencies | |
run: poetry install | |
- name: Validate code formatting | |
run: poetry run ruff format --check | |
- name: Validate code style | |
run: poetry run ruff check | |
test: | |
if: github.repository == 'microsoft/sarif-tools' | |
runs-on: ubuntu-latest | |
name: Test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install Poetry | |
run: pip install poetry | |
- name: Install dependencies | |
run: poetry install --with dev | |
- name: Run tests | |
run: poetry run pytest |