Save constraint and objective data from agent decision optimization #524
Workflow file for this run
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
| # This workflow will install Python dependencies, run tests and lint with a single version of Python | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: ABCE tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "main", "dev", "github_actions"] | |
| pull_request: | |
| branches: [ "main", "dev"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/biegelk/abce:latest | |
| steps: | |
| - uses: actions/checkout@v3 | |