@@ -1,15 +1,23 @@
kind: pipeline
name: default
-workspace:
- path: /root
-
steps:
-- name: test_all
+- name: setup
- image: python
+ image: gdritter/lament-configuration-env:latest
commands:
- - pip install poetry
- poetry install
- - poetry run inv test
+
- - poetry run inv tc
+- name: format
- - poetry run inv checkfmt
+ commands:
+ - inv checkfmt
+- name: typecheck
+ - inv tc
+- name: test
+ - inv test