Skip to content

DEV-634: allow setting an arbitrary image tag via set-image #258

DEV-634: allow setting an arbitrary image tag via set-image

DEV-634: allow setting an arbitrary image tag via set-image #258

Workflow file for this run

name: Lint
on:
push:
branches:
- develop
pull_request: ~
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v3
with:
python-version: "3.12"
- run: pip install pre-commit
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-3.10-pre-commit-$${{ hashFiles('.pre-commit-config.yaml') }}
- run: pre-commit run --all-files