This fixes https://github.com/mikibonacci/aiidalab-qe-vibroscopy/issu… #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Set up Python environment | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
# Install pre-commit | |
- name: Install pre-commit | |
run: pip install pre-commit | |
# Run pre-commit on all files | |
- name: Run pre-commit | |
run: pre-commit run --all-files |