Skip to content

[PR] Breaking Changes to DEV, Change CLA Configuration on main #10

[PR] Breaking Changes to DEV, Change CLA Configuration on main

[PR] Breaking Changes to DEV, Change CLA Configuration on main #10

Workflow file for this run

name: continuous integration (ci)
on: [pull_request, workflow_dispatch]
# To successfully find the files that are required for testing:
env:
TEST_WORKSPACE: ${{ github.workspace }}
jobs:
pre_commit:
# Set up operating system
runs-on: ubuntu-latest
# Define job steps
steps:
- name: Check-out repository
uses: actions/checkout@v4
- name: Build Dev Docker Image
run: |
make docker_build_dev
- name: Docker Run pre-commit on all files.
run: |
make docker_pre_commit_action
ci:
# Set up operating system
runs-on: ubuntu-latest
strategy:
matrix:
# Quote this as strings... otherwise 3.10 will be interpreted as 3.1
python-version: ['3.10', '3.11', '3.12']
# Define job steps
steps:
- name: Check-out repository
uses: actions/checkout@v4
- name: Build Dev Docker Image
run: |
make docker_build_dev PYTHON_VERSION=${{ matrix.python-version }}
- name: Build Docker Image With Python ${{ matrix.python-version }}
run: |
make docker_build PYTHON_VERSION=${{ matrix.python-version }}
- name: Run Docker Tests With Python ${{ matrix.python-version }}
run: |
make action_compose_test
- name: Check Test Results
run: |
if [ $? -eq 0 ]; then
echo "Tests ran successfully."
else
echo "Tests failed."
exit 1
fi
# TODO: Catch errors and report them:
- name: Docker Build Documentation
run: make docker_doc_build_action