Skip to content

chore(deps-dev): bump tailwindcss from 3.3.6 to 3.4.3 #158

chore(deps-dev): bump tailwindcss from 3.3.6 to 3.4.3

chore(deps-dev): bump tailwindcss from 3.3.6 to 3.4.3 #158

Workflow file for this run

name: Linting
on: [push, pull_request]
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
jobs:
lint-python:
name: Python
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install requirements
run: |
set -xe
python -m pip install poetry
python -m poetry install
- name: Lint with ruff
run: |
set -xe
python -m poetry run ruff format --check
lint-docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/[email protected]
with:
cache: npm
- name: Install dependencies
run: |
set -xe
npm i
- name: Lint
run: |
set -xe
npm run lint:docs
lint-project:
name: Project
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/[email protected]
with:
cache: npm
- name: Install dependencies
run: |
set -xe
npm i
- name: Lint
run: |
set -xe
npm run lint:proj
lint-successful:
if: ${{ always() }}
name: Lint successful
runs-on: ubuntu-latest
needs: [lint-python, lint-docs, lint-project]
steps:
- name: Whether the whole linting suite passed
uses: re-actors/[email protected]
with:
jobs: ${{ toJSON(needs) }}