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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |