Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Housekeeping #46

Merged
merged 7 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/before-job/action.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .github/workflows/build-job/action.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .github/workflows/docs-job/action.yml

This file was deleted.

16 changes: 5 additions & 11 deletions .github/workflows/lint-every-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,13 @@ name: lint-every-pr
on:
pull_request:
branches:
- master
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
- uses: chartboost/ruff-action@v1
with:
fetch-depth: 0
- uses: github/super-linter/slim@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: master
VALIDATE_ALL_CODEBASE: false
VALIDATE_PYTHON_BLACK: true
VALIDATE_PYTHON_FLAKE8: true
VALIDATE_PYTHON_PYLINT: true
args: "format --check"
81 changes: 23 additions & 58 deletions .github/workflows/pull-request-commit.yml
Original file line number Diff line number Diff line change
@@ -1,75 +1,40 @@
name: pull-request-commit
on:
pull_request:
branches:
- master
branches: ['main']
jobs:
build:
strategy:
matrix:
pyver: ['3.8', '3.9', '3.10']
os: ['ubuntu-latest', 'windows-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.pyver }}
- uses: ./.github/workflows/before-job
- uses: ./.github/workflows/build-job
- uses: actions/upload-artifact@v2
with:
name: dist-${{ matrix.os }}-${{ matrix.pyver }}
path: dist
pyver: ['3.9', '3.10', '3.11', '3.12']
os: ['ubuntu-latest']
include:
- pyver: '3.9'
os: 'windows-latest'
uses: ./.github/workflows/workflow-build.yml
with:
pyver: ${{ matrix.pyver }}
os: ${{ matrix.os }}
test:
needs: [build]
strategy:
matrix:
pyver: ['3.8', '3.9', '3.10']
os: ['ubuntu-latest', 'windows-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.pyver }}
- uses: ./.github/workflows/before-job
- uses: actions/download-artifact@v2
with:
name: dist-${{ matrix.os }}-${{ matrix.pyver }}
- uses: jannekem/run-python-script-action@v1
with:
script: |
import os
import subprocess
fn = [f for f in os.listdir() if f.endswith('whl') and f.startswith('dgbowl')][0]
subprocess.run(["pip", "install", f"{fn}[testing]"])
- uses: ./.github/workflows/test-job
pyver: ['3.9', '3.10', '3.11', '3.12']
os: ['ubuntu-latest']
include:
- pyver: '3.9'
os: 'windows-latest'
uses: ./.github/workflows/workflow-test.yml
with:
pyver: ${{ matrix.pyver }}
os: ${{ matrix.os }}
pages:
needs: [build]
strategy:
matrix:
pyver: ['3.9']
os: ['ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.pyver }}
- uses: ./.github/workflows/before-job
- uses: actions/download-artifact@v2
with:
name: dist-${{ matrix.os }}-${{ matrix.pyver }}
- uses: jannekem/run-python-script-action@v1
with:
script: |
import os
import subprocess
fn = [f for f in os.listdir() if f.endswith('whl') and f.startswith('dgbowl')][0]
subprocess.run(["pip", "install", f"{fn}[docs]"])
- uses: ./.github/workflows/docs-job
- uses: actions/upload-artifact@v2
with:
name: public-${{ matrix.os }}-${{ matrix.pyver }}
path: public
uses: ./.github/workflows/workflow-pages.yml
with:
pyver: ${{ matrix.pyver }}
os: ${{ matrix.os }}
39 changes: 39 additions & 0 deletions .github/workflows/push-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: push-main
on:
push:
branches: ['main']
jobs:
build:
uses: ./.github/workflows/workflow-build.yml
with:
pyver: '3.9'
os: 'ubuntu-latest'
test:
needs: [build]
uses: ./.github/workflows/workflow-test.yml
with:
pyver: '3.9'
os: 'ubuntu-latest'
pages:
needs: [build]
uses: ./.github/workflows/workflow-pages.yml
with:
pyver: '3.9'
os: ubuntu-latest
deploy:
needs: [pages]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- uses: actions/download-artifact@v4
with:
name: public-ubuntu-latest-3.9
path: public/main
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
keep_files: true
79 changes: 0 additions & 79 deletions .github/workflows/push-master.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/workflows/test-job/action.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/workflow-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Build schemas
on:
workflow_call:
inputs:
os:
required: true
type: string
pyver:
required: true
type: string

jobs:
build:
runs-on: ${{ inputs.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.pyver }}
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install -U setuptools build
- name: Build dgbowl schemas
shell: bash
run: |
python -m build
- uses: actions/upload-artifact@v4
with:
name: dist-${{ inputs.os }}-${{ inputs.pyver }}
path: dist
39 changes: 39 additions & 0 deletions .github/workflows/workflow-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: Build docs
on:
workflow_call:
inputs:
os:
required: true
type: string
pyver:
required: true
type: string

jobs:
pages:
runs-on: ${{ inputs.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.pyver }}
- uses: actions/download-artifact@v4
with:
name: dist-${{ inputs.os }}-${{ inputs.pyver }}
- uses: jannekem/run-python-script-action@v1
with:
script: |
import os
import subprocess
fn = [f for f in os.listdir() if f.endswith('whl') and f.startswith('dgbowl_schemas')][0]
subprocess.run(["pip", "install", f"{fn}[docs]"])
- name: Build the docs
shell: bash
run: |
sphinx-apidoc -o docs/source/apidoc src/dgbowl_schemas -T -M -f --templatedir=docs/apidoc_t
sphinx-build -W -b html docs/source public/main
- uses: actions/upload-artifact@v4
with:
name: public-${{ inputs.os }}-${{ inputs.pyver }}
path: public/main
Loading
Loading