-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from francescovallone/develop
Release Version 0.6 of Serinus and update all related packages
- Loading branch information
Showing
298 changed files
with
11,827 additions
and
1,663 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Serinus CLI Tests | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: ./packages/serinus_cli | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🎯 Setup Dart | ||
uses: dart-lang/setup-dart@v1 | ||
|
||
- name: 📦 Install Dependencies | ||
run: dart pub get | ||
|
||
# - name: 🕵️ Analyze | ||
# run: dart analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: 🧪 Run Tests | ||
run: | | ||
dart pub global activate coverage | ||
dart test --coverage=coverage && dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=${{inputs.report_on}} | ||
- name: 📊 Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v2 | ||
with: | ||
path: ./packages/serinus_cli/coverage/lcov.info | ||
min_coverage: 0 | ||
|
||
# - name: Upload coverage reports to Codecov | ||
# uses: codecov/codecov-action@v4 | ||
# env: | ||
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Serinus Config Tests | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: ./packages/serinus_config | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🎯 Setup Dart | ||
uses: dart-lang/setup-dart@v1 | ||
|
||
- name: 📦 Install Dependencies | ||
run: dart pub get | ||
|
||
# - name: 🕵️ Analyze | ||
# run: dart analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: 🧪 Run Tests | ||
run: | | ||
dart pub global activate coverage | ||
dart test --coverage=coverage && dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=${{inputs.report_on}} | ||
- name: 📊 Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v2 | ||
with: | ||
path: ./packages/serinus_config/coverage/lcov.info | ||
min_coverage: 0 | ||
|
||
# - name: Upload coverage reports to Codecov | ||
# uses: codecov/codecov-action@v4 | ||
# env: | ||
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Serinus Rate Limiter Tests | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: ./packages/rate_limiter | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🎯 Setup Dart | ||
uses: dart-lang/setup-dart@v1 | ||
|
||
- name: 📦 Install Dependencies | ||
run: dart pub get | ||
|
||
# - name: 🕵️ Analyze | ||
# run: dart analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: 🧪 Run Tests | ||
run: | | ||
dart pub global activate coverage | ||
dart test --coverage=coverage && dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=${{inputs.report_on}} | ||
- name: 📊 Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v2 | ||
with: | ||
path: ./packages/rate_limiter/coverage/lcov.info | ||
min_coverage: 0 | ||
|
||
# - name: Upload coverage reports to Codecov | ||
# uses: codecov/codecov-action@v4 | ||
# env: | ||
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script setup> | ||
defineProps({ | ||
title: String, | ||
description: String, | ||
link: String | ||
}) | ||
</script> | ||
|
||
<template> | ||
<a :href="link" class="p-4 flex flex-col gap-2 bg-gray-950/25 rounded-lg !no-underline border-2 border-transparent !transition-all !ease-in-out hover:border-orange-500"> | ||
<h3 class="text-md text-white !m-0">{{ title }}</h3> | ||
<p class="text-sm text-gray-400 !m-0">{{ description }}</p> | ||
</a> | ||
</template> |
Oops, something went wrong.