diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 18:36:09 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 18:41:00 +0300 |
commit | 80301a2fd928b87fc38ab70818527cb6f6e45bc2 (patch) | |
tree | 7d9881e72ea972de4206b735c692b55b72898c2f /.github/workflows/ci.yml | |
parent | move all tests to test/ (diff) | |
download | cgitize-80301a2fd928b87fc38ab70818527cb6f6e45bc2.tar.gz cgitize-80301a2fd928b87fc38ab70818527cb6f6e45bc2.zip |
tests/integration: add example to test examples/cgitize.toml
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index feb74f2..c4d1aed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,10 @@ jobs: git config --global user.email 'John.Doe@example.com' - name: Install dependencies run: pip install -r requirements.txt - - name: Integration tests + - name: Integration test (local) run: ./test/integration/local/test.sh + - name: Integration test (example config) + run: ./test/integration/example/test.sh - name: Unit tests run: python -m unittest --buffer @@ -36,7 +38,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Integration tests + - name: Integration test (Docker) run: ./test/integration/docker/test.sh publish_docker: |