Skip to content

build: remove just install #4

build: remove just install

build: remove just install #4

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: Initialize Pants
uses: pantsbuild/actions/init-pants@main
with:
# cache0 makes it easy to bust the cache if needed
gha-cache-key: cache0-py310
named-caches-hash: ${{ hashFiles('lockfiles/*.json', '**/something-else.lock') }}
- name: format
run: just fmt
- name: lint
run: just lint
- name: test
run: just test
- name: package
run: just package