Added function get_geometry_steps_of_optimisation #24
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: Run the ruff linter and formatter | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ruff-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: chartboost/ruff-action@v1 | |
with: | |
src: "./dfttools" | |
args: "check --fix --config ./pyproject.toml --output-format=github" | |
ruff-format: | |
runs-on: ubuntu-latest | |
needs: ruff-lint | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: chartboost/ruff-action@v1 | |
with: | |
src: "./dfttools" | |
args: "format --config ./pyproject.toml" |