Implement database infra utilities and tests for api (#118, #122) #323
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: Provider Proxy CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Check for changes | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
provider-proxy: | |
- 'provider-proxy/**' | |
- name: Build the Docker image | |
if: steps.filter.outputs.provider-proxy == 'true' | |
run: docker build ./provider-proxy/ |