Skip to content

Gradient descent example corrected (#251) #504

Gradient descent example corrected (#251)

Gradient descent example corrected (#251) #504

Workflow file for this run

name: CI pipeline
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
- 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 --fatal-infos
- name: Run tests
run: dart test
- name: Run e2e tests
run: dart pub run test e2e -p vm