Skip to content

build: justfile config and build docker images #1

build: justfile config and build docker images

build: justfile config and build docker images #1

Workflow file for this run

name: 'Pipeline'
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: read
jobs:
checks:
name: 'Checks'
#if: ${{ github.event_name == 'pull_request'}}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- uses: extractions/setup-just@v1
name: Setup just
- name: Install dependencies
run: just setup
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit/
key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Pre-commit hooks
run: just pre_commit
shell: bash