Skip to content

Dual Solver Updates #61

Dual Solver Updates

Dual Solver Updates #61

Workflow file for this run

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()'