build(deps): bump python-ldap from 3.4.3 to 3.4.4 #68
Workflow file for this run
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: Tests | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
jobs: | |
test-postgres: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Docker Lint | |
id: docker-lint | |
run: | | |
docker run --rm -i ghcr.io/hadolint/hadolint hadolint \ | |
--ignore DL3008 \ | |
--ignore DL3059 \ | |
- < Dockerfile | |
- name: Run tests | |
id: smoketest | |
run: >- | |
BUILD_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") | |
RELEASE=$(cat VERSION) | |
VERSION=${{ github.sha }} | |
docker-compose | |
-f tests/docker-compose.test.mongodb.yml | |
up | |
--build | |
--quiet-pull | |
--exit-code-from tester | |
- uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: always() | |
test-mongodb: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Docker Lint | |
id: docker-lint | |
run: | | |
docker run --rm -i ghcr.io/hadolint/hadolint hadolint \ | |
--ignore DL3008 \ | |
--ignore DL3059 \ | |
- < Dockerfile | |
- name: Run tests | |
id: smoketest | |
run: >- | |
BUILD_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") | |
RELEASE=$(cat VERSION) | |
VERSION=${{ github.sha }} | |
docker-compose | |
-f tests/docker-compose.test.mongodb.yml | |
up | |
--build | |
--quiet-pull | |
--exit-code-from tester | |
- uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: always() |