Skip to content

Fixed URL in README.md still pointing towards the glTF validator #10

Fixed URL in README.md still pointing towards the glTF validator

Fixed URL in README.md still pointing towards the glTF validator #10

Workflow file for this run

name: CI
on:
push:
branches-ignore: [ gh-pages ]
pull_request:
branches-ignore: [ gh-pages ]
jobs:
build:
runs-on: ubuntu-latest
# Note that this workflow uses the latest stable version of the Dart SDK.
# Docker images for other release channels - like dev and beta - are also
# available. See https://hub.docker.com/r/google/dart/ for the available
# images.
container:
image: google/dart:latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Print Dart SDK version
run: dart --version
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: dart analyze --no-fatal-warnings
- name: Run tests
run: dart test
- name: Verify build all
run: dart run grinder