Skip to content

Bump zipp from 3.15.0 to 3.16.0 #2042

Bump zipp from 3.15.0 to 3.16.0

Bump zipp from 3.15.0 to 3.16.0 #2042

Workflow file for this run

name: build-and-test
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.8]
node-version: [18.x]
services:
postgres:
image: postgres:13
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@v3
- name: Install Node
run: npm install
- name: Run Flake8
run: make jenkins
- name: Test
run: make integration