Skip to content

Commit

Permalink
Updated workflow for v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan-Prescott committed Dec 6, 2024
1 parent 5ec5db4 commit 810cbc8
Showing 1 changed file with 26 additions and 25 deletions.
51 changes: 26 additions & 25 deletions .github/workflows/formatter.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,35 @@
name: Lint

on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
- v.2.0.0-code

jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
run-linters:
name: Run linters
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v4
steps:
- name: Check out Git repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.12
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.12

- name: Install Python dependencies
run: pip install black flake8
- name: Install Python dependencies
run: pip install black flake8

- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true
flake8: true
- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true
flake8: true

0 comments on commit 810cbc8

Please sign in to comment.