Skip to content

merging cobra-model #22

merging cobra-model

merging cobra-model #22

Workflow file for this run

name: Run Pre-Commit
on:
pull_request: {}
push:
branches:
- cobra-model
jobs:
pre-commit:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set file mode to false
run: |
git config core.filemode false
- uses: pre-commit/action@v2.0.3