changed form tag and corrected error handling #13
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
- "releases/*" | |
jobs: | |
tests: | |
name: "Integration testing" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Build docker image" | |
run: docker build -t fbuedding/fiware-iot-agent-sdk-test -f ./test.Dockerfile . | |
- name: "Pull docker images" | |
run: | | |
docker pull fiware/iotagent-ul:latest | |
docker pull mongo:4.2 | |
docker pull fiware/orion:latest | |
- name: "Run tests" | |
run: docker compose run iot-agent-sdk-test |