Skip to content

Commit

Permalink
Add intergration test github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
YooSunYoung committed May 10, 2024
1 parent 3c5c22e commit a219fe1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Integration test actions

name: Integration

on:
workflow_dispatch:
inputs:
python-version:
type: string
workflow_call:
inputs:
python-version:
type: string

jobs:
tests:
name: Integration Tests
runs-on: 'ubuntu-22.04'
steps:
- run: sudo apt install --yes docker-compose
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- run: python -m pip install --upgrade pip
- run: python -m pip install -r requirements/ci.txt
- run: docker-compose version

0 comments on commit a219fe1

Please sign in to comment.