Skip to content

Commit

Permalink
bring back dev yml
Browse files Browse the repository at this point in the history
get past off annotation error
  • Loading branch information
amishas157 committed Jul 25, 2024
1 parent c50e08c commit 7ae39fd
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci-cd-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI-CD-DEV

on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
branches:
- master

jobs:
pre-commit:
runs-on: ubuntu-latest
if: >-
github.event.pull_request.merged == false &&
github.event.pull_request.state == 'open'
steps:
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8

- id: file_changes
uses: trilom/[email protected]
with:
output: " "

- uses: pre-commit/[email protected]
env:
extra_args: --color=always --files ${{ steps.file_changes.outputs.files}}

0 comments on commit 7ae39fd

Please sign in to comment.