Add rectangle images for projector #53
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: bot-eotest-configs CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: null | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
py: [ "3.11" ] | |
CC: [ gcc ] | |
CXX: [ g++ ] | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install test dependencies | |
run: | | |
pip install numpy | |
- name: Clone the package and checkout the branch | |
shell: bash -l {0} | |
run: | | |
git clone https://github.com/${GITHUB_REPOSITORY} | |
cd bot-eotest-configs | |
git fetch origin ${GITHUB_REF}:TESTING | |
git checkout TESTING | |
- name: Run the test script | |
run: | | |
python scripts/cfg_checker.py |