From eb2267a0301e47051d058abd56ef5a261bd02c46 Mon Sep 17 00:00:00 2001 From: Harry Chen Date: Sun, 21 Jan 2024 00:54:23 +0800 Subject: [PATCH] build: fix artifact conflict in workflow, add pana score evaluation Signed-off-by: Harry Chen --- .github/workflows/test.yml | 6 +++++- pubspec.yaml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6f1c6f4..640d7cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,8 +25,12 @@ jobs: - name: Upload generated dartdoc uses: actions/upload-artifact@v4 with: - name: docs + name: docs-${{ matrix.sdk }} path: doc/ + - name: Evaluate score by pana + run: | + dart pub global activate pana + dart pub global run pana . # - name: Run example code # run: | # cd example diff --git a/pubspec.yaml b/pubspec.yaml index 151f928..1ed890e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: fido2 -description: FIDO2 (CTAP2) library for dart +description: Library to parse FIDO2 request / response and interactive with authenticators via CTAP2. version: 0.0.3 repository: https://github.com/nfcim/fido2