Skip to content

Bump build from 1.1.1 to 1.2.1 #12

Bump build from 1.1.1 to 1.2.1

Bump build from 1.1.1 to 1.2.1 #12

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9']
name: CI ${{ matrix.python-version }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dev dependencies
run: make install-dev
- name: Run test
run: make test