Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

Bump pydantic from 1.9.1 to 1.10.13 #18

Bump pydantic from 1.9.1 to 1.10.13

Bump pydantic from 1.9.1 to 1.10.13 #18

Workflow file for this run

name: Nox
on:
pull_request:
push:
branches:
- master
jobs:
get_matrix:
runs-on: ubuntu-latest
name: Get Matrix
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get Matrix
uses: nint8835/[email protected]
with:
keywords: not format
id: matrix
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
run_nox:
runs-on: ubuntu-latest
needs: get_matrix
name: Run Nox
strategy:
matrix:
session: ${{ fromJson(needs.get_matrix.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nox
uses: excitedleigh/[email protected]
- name: Setup nox-poetry
run: pip install nox-poetry poetry
- name: Run session
run: nox -s "${{ matrix.session }}"