Check if member has clearance when enabling boefje #5855
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: Rocky Run the test suite | |
on: | |
push: | |
paths: | |
- octopoes/** | |
- rocky/** | |
pull_request: | |
paths: | |
- octopoes/** | |
- rocky/** | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ['3.8', '3.9', '3.10', '3.11'] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build image | |
run: DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -f rocky/base.yml -f rocky/.ci/docker-compose.yml build --build-arg USER_UID="$(id -u)" --build-arg USER_GID="$(id -g)" --build-arg PYTHON_VERSION=${{ matrix.version }} rocky_tests | |
- name: Run tests | |
run: DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -f rocky/base.yml -f rocky/.ci/docker-compose.yml run --rm rocky_tests |