Skip to content

Bump cryptography from 42.0.4 to 43.0.1 #94

Bump cryptography from 42.0.4 to 43.0.1

Bump cryptography from 42.0.4 to 43.0.1 #94

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