Skip to content

Commit

Permalink
install act
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Jan 17, 2025
1 parent b6d5ea3 commit 88816f9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/act.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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

0 comments on commit 88816f9

Please sign in to comment.