githubci.yml
1 name: Github CircuitPython Library CI 2 3 on: [push] 4 5 jobs: 6 build: 7 8 runs-on: ubuntu-latest 9 10 steps: 11 - uses: actions/checkout@v1 12 - uses: actions/setup-python@v1 13 with: 14 python-version: '3.x' # Version range or exact version of a Python version to use, using semvers version range syntax. 15 architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified 16 - name: pre-install 17 run: | 18 source install.sh