Skip to content

Fixed xticks, table positioning and size, misc styling in visualization tab #192

Fixed xticks, table positioning and size, misc styling in visualization tab

Fixed xticks, table positioning and size, misc styling in visualization tab #192

Workflow file for this run

name: Linting
on:
pull_request:
branches:
- "*"
paths:
- lib/**
- '.github/workflows/linting.yml'
workflow_dispatch:
jobs:
build:
name: Linting checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.2'
channel: 'stable'
- run: flutter --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: flutter test