Skip to content

install act

install act #1

Workflow file for this run

name: Test Template Workflows
on:
push:
jobs:
test-template-workflows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install act
run: |
curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
# Add the installation directory to PATH
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- name: Verify act installation
run: |
act --version