mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 23:42:00 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: Continous Integration
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.dart'
|
|
- 'pubspec.yaml'
|
|
pull_request:
|
|
branches: [ master, ]
|
|
paths:
|
|
- '**/*.dart'
|
|
- 'pubspec.yaml'
|
|
- '.github/actions/flutter-common/action.yml'
|
|
- '.github/workflows/ci.yml'
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
name: Run tests
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
TZ: Europe/Berlin
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Common flutter setup
|
|
uses: ./.github/actions/flutter-common
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt install libsqlite3-dev lcov --no-install-recommends
|
|
flutter pub get
|
|
|
|
# Removing some folders from the coverage since these files are not really
|
|
# part of the app code and just get in the way of the report
|
|
- name: Test app
|
|
run: |
|
|
flutter test --coverage
|
|
lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*' -o coverage/lcov.info
|
|
|
|
- name: Coveralls
|
|
uses: coverallsapp/github-action@v2
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|