Skip to content

✨ Pass parameters to read #185

✨ Pass parameters to read

✨ Pass parameters to read #185

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12", "3.13"]
steps:
- name: Checkout main
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Checkout lndocs
uses: actions/checkout@v4
with:
repository: laminlabs/lndocs
ssh-key: ${{ secrets.READ_LNDOCS }}
path: lndocs
ref: main
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pre-commit
uses: actions/cache@v3
if: matrix.python-version == '3.12'
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install Python dependencies
run: |
python -m pip install -U pip
pip install -U laminci
- run: nox -s lint
if: matrix.python-version == '3.12'
- run: nox -s build
- name: Codecov
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
- uses: cloudflare/pages-action@v1
id: cloudflare
if: matrix.python-version == '3.12'
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: 472bdad691b4483dea759eadb37110bd
projectName: readfcs
directory: "_build/html"
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
wranglerVersion: "3"