diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml new file mode 100644 index 0000000..a32ce66 --- /dev/null +++ b/.github/workflows/install.yml @@ -0,0 +1,39 @@ +name: Install Test + +on: + pull_request: + push: + branches: + - main + +jobs: + test: + name: Python ${{ matrix.python }} + runs-on: ubuntu-latest + env: + TERM: xterm-256color + strategy: + matrix: + python: ['3.9', '3.10', '3.11'] + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Set up Python ${{ matrix.python }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python }} + + - name: Stub files & Patch install.sh + run: | + mkdir -p boot/firmware + touch boot/firmware/config.txt + sed -i "s|/boot/firmware|`pwd`/boot/firmware|g" install.sh + touch raspi-config + chmod +x raspi-config + echo `pwd` >> $GITHUB_PATH + + - name: Run Tests + run: | + ./install.sh --unstable --force diff --git a/pyproject.toml b/pyproject.toml index b1c60e1..b477b15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -112,6 +112,6 @@ ignore = [ ] [tool.pimoroni] -apt_packages = ["git"] +apt_packages = [] configtxt = [] -commands = ["false"] +commands = []