Task decorator #65
Workflow file for this run
This file contains hidden or 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: Build on Pull Request | |
# Trigger the workflow on pull request events | |
on: | |
pull_request: | |
branches: | |
- main # Runs when a pull request targets the main branch | |
push: | |
branches: | |
- main # Runs when code is pushed to the main branch (e.g., after merging a PR) | |
jobs: | |
build-and-test: | |
uses: sontx/letrun/.github/workflows/build-and-test.yml@main |