Implement background option to converter #63
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
# Checkout repo and run tests for python versions >= 3.6 | |
name: CI | |
on: | |
push: | |
release: | |
types: [released] | |
pull_request: | |
jobs: | |
DeprecatedTests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
name: Deprecated tests for python-${{ matrix.python-version }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install python-${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Package | |
run: | | |
python${{ matrix.python-version }} -m pip install -e ./ | |
- name: Prepare Tests | |
run: | | |
mkdir -p /tmp/tests | |
ls -lah | |
cp -r tests/* /tmp/tests | |
cd /tmp/tests | |
- name: Perform deprecated tests | |
run: | | |
rgb565-converter -i /tmp/tests/input_info.png -o /tmp/tests/info.cpp | |
rgb565-converter -i /tmp/tests/info.cpp -o /tmp/tests/output_info.png | |
diff /tmp/tests/input_info.png /tmp/tests/output_info.png | |
Test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
name: Testing with python-${{ matrix.python-version }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install python-${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Package | |
run: | | |
python${{ matrix.python-version }} -m pip install -e ./ | |
# unittest | |
- name: Run unittest | |
run: | | |
python${{ matrix.python-version }} -m unittest discover -s tests -v |