Skip to content

Commit

Permalink
move all dev workflow to deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
amishas157 committed Jul 25, 2024
1 parent bc4e563 commit c50e08c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 95 deletions.
95 changes: 0 additions & 95 deletions .github/workflows/ci-cd-dev.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,26 @@ jobs:
- name: Display Environment Name
run: echo "Hello ${{ inputs.envName }}"

pre-commit:
runs-on: ubuntu-latest

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}}

tests:
runs-on: ubuntu-latest

Expand Down

0 comments on commit c50e08c

Please sign in to comment.