Skip to content

Update README

Update README #7

Workflow file for this run

name: Test workflow
on:
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@v1
with:
update_command: "echo updated > update.txt"
on_changes_command: "echo changed > on_changes.txt"
automerge: false