Fix sign of Newton iterate - consistent with builtin solver. (#13) #32
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 test and publish | |
on: | |
push: | |
branches: | |
- "main" | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
build-and-test: | |
uses: ./.github/workflows/build-and-test.yml | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [build-and-test] | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Download docs artifact | |
# docs artifact is uploaded by build-docs job | |
uses: actions/download-artifact@v4 | |
with: | |
name: webpage | |
path: "./doc/public" | |
- name: Upload pages artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "./doc/public" | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |