This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
fix(dto): Fix DTO validation #122
Workflow file for this run
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: Code update | |
# Description: | |
# - This workflow runs linting, testing, and analysis on the codebase, fails if any of these do not pass. | |
# - This workflow is triggered on pull requests and pushes to the main and develop branches. | |
# see: https://docs.github.com/en/actions/using-workflows/reusing-workflows | |
on: | |
pull_request: | |
branches: [main, develop] | |
push: | |
branches: [main, develop] | |
jobs: | |
linting: | |
uses: ./.github/workflows/linting.yml | |
testing: | |
needs: linting | |
if: ${{ needs.linting.result == 'success' }} | |
uses: ./.github/workflows/testing.yml | |
analyze: | |
needs: linting | |
if: ${{ needs.linting.result == 'success' }} | |
uses: ./.github/workflows/analyze.yml |