Skip to content

we need an empty requirements file #25

we need an empty requirements file

we need an empty requirements file #25

Workflow file for this run

# SPDX-FileCopyrightText: 2019 Adafruit Industries
#
# SPDX-License-Identifier: MIT
name: Github CircuitPython Library CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: "actions-ci"
- uses: actions/setup-python@v5
with:
python-version: '3.x' # Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: pre-install
run: |
touch requirements.txt # Empty requirements expected by install.sh
source actions-ci/install.sh