Began work on hamming codes - Implemented rudimentary version in GF(2) #272
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- master | |
- 'release/*' | |
pull_request: | |
branches: | |
- master | |
- 'release/*' | |
workflow_call: | |
jobs: | |
build-wheel: | |
name: Wheel | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Fetch all commits and tags, needed for intermediate versions | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Upgrade pip and other packaging tools | |
run: python3 -m pip install --upgrade pip setuptools setuptools_scm wheel build twine | |
- name: Show package version | |
run: python3 -m setuptools_scm | |
- name: Build the `galois` package | |
run: python3 -m build | |
- name: Verify the wheel file | |
run: python3 -m twine check dist/* | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist/ | |
retention-days: 30 |