Skip to content

Bump jinja2 from 3.1.3 to 3.1.4 #93

Bump jinja2 from 3.1.3 to 3.1.4

Bump jinja2 from 3.1.3 to 3.1.4 #93

Workflow file for this run

---
name: lint
on:
pull_request:
branches:
- master
defaults:
run:
working-directory: 'nephelaiio.ubuntu_installer'
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v4
with:
path: 'nephelaiio.ubuntu_installer'
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Update ubuntu repositories
run: sudo apt-get update
- name: Install make
run: sudo apt-get install -y make
- name: Install dependencies
run: make install
- name: Lint code
run: make lint