Skip to content

Misc: internal state endpoint, bug fixes for remote start transaction… #10

Misc: internal state endpoint, bug fixes for remote start transaction…

Misc: internal state endpoint, bug fixes for remote start transaction… #10

Workflow file for this run

# This workflow will install Python dependencies and run tests
name: Test application
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
version: 1.8.3
- name: Install dependencies
shell: bash
run: |
poetry install
- name: Static type check
run: |
make lint
- name: Run tests
run: |
make test