Skip to content

Commit

Permalink
state of the art
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray committed Nov 4, 2024
1 parent beb9e1e commit 62eae36
Show file tree
Hide file tree
Showing 21 changed files with 233 additions and 514 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Run Build Tests
on:
push:
branches:
- master
pull_request:
branches:
- dev
workflow_dispatch:

jobs:
build_tests:
strategy:
max-parallel: 2
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Build Tools
run: |
python -m pip install build wheel setuptools
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt install python3-dev swig libssl-dev
- name: Build Source Packages
run: |
python setup.py sdist
- name: Build Distribution Packages
run: |
python setup.py bdist_wheel
- name: Install skill
run: |
pip install .
10 changes: 10 additions & 0 deletions .github/workflows/conventional_label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# auto add labels to PRs
on:
pull_request_target:
types: [opened, edited]
name: conventional-release-labels
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: bcoe/conventional-release-labels@v1
2 changes: 1 addition & 1 deletion .github/workflows/license_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jobs:
with:
branch: ${{ github.head_ref }}
action_branch: feat/shared_actions1
python_version: 3.10
python_version: "3.10"
18 changes: 0 additions & 18 deletions .github/workflows/propose_release.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/propose_translation.yml

This file was deleted.

73 changes: 0 additions & 73 deletions .github/workflows/publish_alpha.yml

This file was deleted.

84 changes: 0 additions & 84 deletions .github/workflows/publish_build.yml

This file was deleted.

84 changes: 0 additions & 84 deletions .github/workflows/publish_major.yml

This file was deleted.

Loading

0 comments on commit 62eae36

Please sign in to comment.