-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from dimagi/gh/github-actions
Move to github actions
- Loading branch information
Showing
2 changed files
with
38 additions
and
31 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: couchdbkit test | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
|
||
strategy: | ||
matrix: | ||
python-version: [ "3.9" ] | ||
django-version: [ "3.2.*", "4.2.*" ] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: install dependencies | ||
run: | | ||
pip install django==${{ matrix.django-version }} | ||
pip install -r requirements_dev.txt | ||
python setup.py install | ||
- name: start up couch | ||
run: | | ||
docker run -d --name couchdb-cluster -p 5984:5984 \ | ||
-v $(pwd)/data:/usr/src/couchdb/dev/lib/ \ | ||
klaemo/couchdb:2.0-dev \ | ||
--with-admin-party-please --with-haproxy -n 1 | ||
- name: wait for couch to start | ||
run: timeout 60s sh -c 'until curl http://localhost:5984/${db_name} -sv 2>&1 | grep "^< HTTP/.* 200 OK"; do echo "Waiting for container to be healthy..."; sleep 2; done' | ||
- name: run tests | ||
run: | | ||
python setup.py test |
This file was deleted.
Oops, something went wrong.