Skip to content

Update pages.csv

Update pages.csv #111

Workflow file for this run

name: Examples
on: [push, pull_request]
jobs:
test-ubuntu:
runs-on: Ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Execute
run: |
cd example-problems
make README.md -B
- name: Commit results
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "[email protected]"
git commit -a -m 'Re-build examples' || echo Nothing has changed
git push origin || echo "No changes to commit"