Skip to content

feat: creep and shrinkage according to EN 1992 Annex B #215

feat: creep and shrinkage according to EN 1992 Annex B

feat: creep and shrinkage according to EN 1992 Annex B #215

Workflow file for this run

name: Build
on:
push:
branches:
- 'dev'
pull_request:
branches:
- 'dev'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make deps
- name: Black
run: make form
- name: Lint
run: make lint
- name: Test
run: make test