Skip to content

ACTv3 Release#9

Merged
agent-lee merged 1 commit into
mainfrom
actv3
Jun 12, 2026
Merged

ACTv3 Release#9
agent-lee merged 1 commit into
mainfrom
actv3

Conversation

@agent-lee

Copy link
Copy Markdown
Contributor

No description provided.

@meta-cla meta-cla Bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Jun 12, 2026
Comment on lines +11 to +34
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install package
run: pip install .

- name: Verify import
# Run outside the repo root: the checkout contains act.py, which would
# shadow the installed `act` package when cwd is on sys.path.
working-directory: ${{ runner.temp }}
run: python -c "import act; print(f'ACT imported successfully from {act.__file__}')"

- name: Verify CLI entry point
run: act --help
Comment on lines +11 to +32
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install package with test dependencies
run: pip install ".[test]" pytest

- name: Run regression tests
# Run outside the repo root and against the installed package: the
# checkout contains act.py, which would shadow the installed `act`
# package when cwd is on sys.path.
working-directory: ${{ runner.temp }}
run: python -m pytest --pyargs act.tests -v --tb=short
Comment thread core/gui/act_dashboard.py Fixed
Comment thread core/gui/card.py Fixed
Comment thread core/gui/delta_dashboard.py Fixed
Comment thread core/gui/tabs.py Fixed
Comment thread core/gui/tabs.py Fixed
Comment thread core/gui/tabs.py Fixed
@agent-lee agent-lee merged commit 3141d6f into main Jun 12, 2026
10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants