Skip to content

fix(deps): update ktor to v2.3.5 #805

fix(deps): update ktor to v2.3.5

fix(deps): update ktor to v2.3.5 #805

name: Run Tests and deploy
on:
push:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
setup:
name: Setup project
uses: ./.github/workflows/setup.yml
secrets: inherit
detekt:
name: Analyze
needs: setup
uses: ./.github/workflows/analyze.yml
secrets: inherit
tests:
name: Tests
needs: setup
uses: ./.github/workflows/tests.yml
secrets: inherit
instrumented-tests:
name: Instrumented tests app
needs: setup
uses: ./.github/workflows/instrumented-tests.yml
secrets: inherit
build:
name: Build
needs: setup
uses: ./.github/workflows/build.yml
secrets: inherit
deploy:
name: Deploy
needs:
- tests
- build
uses: ./.github/workflows/deploy.yml
secrets: inherit