Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

feat(files): Add endpoints to retrieve data of files #125

feat(files): Add endpoints to retrieve data of files

feat(files): Add endpoints to retrieve data of files #125

Workflow file for this run

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