Removing almost empty tutorial for tomography models #13
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: Run lint | |
on: [push, pull_request] | |
jobs: | |
linter: | |
name: "Run linter" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install linter | |
run: | | |
python3 -m pip install flake8 pylint | |
- name: Lint | |
run: | | |
make lint |