Add infos
HTTP admin endpoint to get server info
#330
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
name: Test turms-client-dart | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Dart | |
uses: dart-lang/[email protected] | |
with: | |
sdk: 2.18.4 | |
- name: Install dependencies | |
working-directory: turms-client-dart | |
run: dart pub get | |
- name: Verify formatting | |
working-directory: turms-client-dart | |
run: dart format --output=none --set-exit-if-changed . | |
- name: Analyze project source | |
working-directory: turms-client-dart | |
run: dart analyze | |
- name: Run tests | |
working-directory: turms-client-dart | |
run: dart test |