Skip to content

Bump ctlsettings from 0.4.2 to 0.4.3 #3110

Bump ctlsettings from 0.4.2 to 0.4.3

Bump ctlsettings from 0.4.2 to 0.4.3 #3110

Workflow file for this run

name: build-and-test
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.12"]
node-version: [20.x]
services:
postgres:
image: postgres:15
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Install Node
run: npm install
- name: Run Flake8
run: make jenkins
- name: Test
run: make integration