don't login to ghcr for jobs that don't publish #327
Workflow file for this run
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: Test long | |
on: | |
push: | |
branches: [main, chore-workflows] | |
paths: | |
- .github/workflows/test-long.yml | |
workflow_dispatch: | |
inputs: | |
halmos-options: | |
description: "additional halmos options" | |
required: false | |
type: string | |
default: "" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
cache-solver: ["", "--cache-solver"] | |
testname: | |
- "tests/solver" | |
- "examples/simple" | |
- "examples/tokens/ERC20" | |
- "examples/tokens/ERC721" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build image | |
run: | | |
docker build -t halmos . --file packages/halmos/Dockerfile | |
- name: Run pytest | |
run: | | |
docker run -v .:/workspace --entrypoint pytest halmos -x -v tests/test_halmos.py -k ${{ matrix.testname }} --halmos-options='-st --solver-timeout-assertion 0 --solver-threads 4 --solver-command yices-smt2 ${{ matrix.cache-solver }} ${{ inputs.halmos-options }}' -s --log-cli-level= |