Add yoc-attribute #7
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: Test | |
on: | |
pull_request: | |
branches: [ "develop", "master" ] | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
# push: | |
# branches: [ "develop", "master" ] | |
# paths-ignore: | |
# - "docs/**" | |
# - "**.md" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- run: | | |
touch .env | |
echo BAG3D_TEST_DATA=${PWD}/tests/test_data >> .env | |
- name: Build docker images | |
run: | | |
make download | |
make docker_volume_create | |
make docker_up | |
- name: Run unit tests | |
run: make test | |
- name: Recreate volumes | |
run: | | |
make docker_down | |
make docker_volume_recreate | |
make docker_up_nobuild | |
- name: Run integration tests | |
run: make test_integration |