Skip to content

feat: Add “x-nullable” field for null definition in OpenAPI 2.0 (#269) #482

feat: Add “x-nullable” field for null definition in OpenAPI 2.0 (#269)

feat: Add “x-nullable” field for null definition in OpenAPI 2.0 (#269) #482

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, review_requested]
jobs:
test:
name: "Tests"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./swagger_parser
strategy:
matrix:
sdk:
- stable
steps:
- uses: actions/[email protected]
- uses: dart-lang/[email protected]
with:
sdk: "${{ matrix.sdk }}"
- name: Install dependencies
run: dart pub get
- name: Format
run: dart format --set-exit-if-changed -o none .
- name: Analyze
run: dart analyze
- name: Run tests
run: dart run test