Skip to content

Commit

Permalink
Merge pull request #20 from SciCatProject/master-integration-test
Browse files Browse the repository at this point in the history
Add intergration test github action.
  • Loading branch information
YooSunYoung authored May 10, 2024
2 parents 3c5c22e + a219fe1 commit 4ac3327
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 4ac3327

Please sign in to comment.