Skip to content

Elastic tube 1D: Update solver sections, removing the now automatic b… #1

Elastic tube 1D: Update solver sections, removing the now automatic b…

Elastic tube 1D: Update solver sections, removing the now automatic b… #1

Workflow file for this run

name: Check style
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
check_style:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
check-latest: true
- name: Install pre-commit
run: pip install pre-commit
- name: Run checks
run: pre-commit run -a -v
- name: Git status
if: always()
run: |
echo -e '### Status\n```text' >> $GITHUB_STEP_SUMMARY
git status | tee -a $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: Full diff
if: always()
run: |
echo -e '### Diff\n```diff' >> $GITHUB_STEP_SUMMARY
git diff | tee -a $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY