Skip to content

improve: now min & max check returns an std::optional #192

improve: now min & max check returns an std::optional

improve: now min & max check returns an std::optional #192

Workflow file for this run

name: Generate Notebook and README
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
notebook:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Create Notebook
uses: addnab/docker-run-action@v3
with:
image: mateusvrs/cp-notebook:v1.0 # Thank you mateusvrs
options: -w /usr/src/app -v ${{ github.workspace }}:/usr/src/app
run: apt-get update && apt-get install -y asymptote texlive-full && make notebook readme
- name: Notebook Update - Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: "notebook.pdf"
commit_message: "updates notebok"
- name: README Update - Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: "README.md"
commit_message: "update README to match with notebook"