Dual Solver Updates #61
This file contains hidden or 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: Run_Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| # Set up Julia | |
| - name: Set up Julia | |
| uses: julia-actions/[email protected] | |
| with: | |
| version: '1.11' | |
| # Install dependencies | |
| - name: Install dependencies | |
| run: julia --project=. -e 'using Pkg; Pkg.instantiate()' | |
| # Run the tests | |
| - name: Run tests | |
| run: julia --project=. -e 'using Pkg; Pkg.test()' |