Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 541 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 541 Bytes

The OpenSAFELY Setup Action

This is a GitHub Action to provide some basic setup in a GitHub workflow.

It is designed to perform some basic setup and install some tools that are common across many of our OpenSAFELY jobs.

Usage

See action.yml for full details.

Example

...

jobs:
  my-job:
    runs-on: ubuntu-22.04

    steps:
      - uses: "opensafely-core/setup-action@v1"
        with:
          python-version: "3.10"
          cache-dependency-path: "requirements.*.txt"
          install-just: true