From 41d7156bfa4cbafbd5724810f5671dd0d934321a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 30 Oct 2025 20:57:09 +0000 Subject: [PATCH 1/2] Initial plan From e756cf09d75d1462de856523902eb840d1db1f06 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 30 Oct 2025 21:00:50 +0000 Subject: [PATCH 2/2] Add GitHub Actions workflow with Ubuntu 20.04 and Python 3.5 Co-authored-by: luzfcb <807599+luzfcb@users.noreply.github.com> --- .github/workflows/build.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..3f298da6e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,34 @@ +name: Build + +on: + push: + branches: + - pelican + pull_request: + branches: + - pelican + +jobs: + build: + runs-on: ubuntu-20.04 + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + submodules: true + + - name: Set up Python 3.5 + uses: actions/setup-python@v5 + with: + python-version: '3.5' + + - name: Install dependencies + run: | + python --version + pip install --upgrade pip + pip install -r requirements.txt + + - name: Build site + run: | + make publish