Skip to content

feat: add function to get datetime from ISO week calendar #15

feat: add function to get datetime from ISO week calendar

feat: add function to get datetime from ISO week calendar #15

Workflow file for this run

name: Dart
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
sdk: [2.12.0, 2.19.4, stable]
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- 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 run test