Skip to content

Bump nyxx from 6.1.0 to 6.2.1 (#19) #48

Bump nyxx from 6.1.0 to 6.2.1 (#19)

Bump nyxx from 6.1.0 to 6.2.1 (#19) #48

Workflow file for this run

name: Dart
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
PUB_ENVIRONMENT: bot.github
jobs:
analyze-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk:
- stable
- beta
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3
with:
sdk: ${{ matrix.sdk }}
- name: Install dependencies
run: dart pub get
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze code
run: dart analyze --fatal-infos .
- name: Run VM tests
run: dart test --reporter=github --test-randomize-ordering-seed=random