Skip to content

Bump nyxx from 6.3.0 to 6.4.3 #108

Bump nyxx from 6.3.0 to 6.4.3

Bump nyxx from 6.3.0 to 6.4.3 #108

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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
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