Merge pull request #71 from cracked-machine/develop #275
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Build | |
on: | |
push: | |
branches: [ "**" ] | |
pull_request: | |
branches: [ "develop", "main" ] | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# init | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
make init | |
# run pytest | |
- name: Test with pytest | |
run: | | |
make test | |
- name: upload code coverage | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code coverage | |
path: ./tests/lcov/html/* | |
if-no-files-found: error | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
# publish pages | |
- name: Converts Markdown to HTML | |
uses: jaywcjlove/markdown-to-html-cli@main | |
with: | |
source: examples.md | |
output: examples.html | |
- name: Prepare examples | |
run: | | |
mkdir _site | |
cp -r docs _site | |
cp examples.md _site | |
cp examples.html _site | |
echo "<a href='examples.html'>examples</a>" > _site/index.html | |
- name: upload examples | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
name: github-pages | |
path: _site | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
# publish wheel | |
- name: create wheel | |
run: | | |
env | |
make init pkg | |
chmod 777 dist/* | |
- name: upload wheel | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python wheel | |
path: dist | |
if-no-files-found: error | |