Update README #4
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 workflow | |
on: | |
# manual only | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
lint-action: | |
runs-on: ubuntu-latest | |
name: Lint action | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lint | |
run: make lint | |
test-github-action: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the head commit of the branch | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Test | |
uses: opensafely-core/update-dependencies-action@main | |
with: | |
update_command: "echo updated > update.txt" | |
on_changes_command: "echo changed > on_changes.txt" | |