Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jonatas
2020-09-19 09:39:12 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b42811d12344395cc51c9126a54cc3e542dd7502
b42811d1
1 parent
d9ba0f25
change folder to build tests
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
1 deletions
.github/workflows/main.yml
.github/workflows/packages.yml
.github/workflows/main.yml
View file @
b42811d
#The name of your workflow.
name
:
build
# Trigger the workflow on push or pull request
on
:
[
push
,
pull_request
]
on
:
push
:
paths
:
-
"
getx/**"
-
"
.github/workflows/main.yaml"
pull_request
:
paths
:
-
"
getx/**"
-
"
.github/workflows/main.yaml"
#A workflow run is made up of one or more jobs. Jobs run in parallel by default.
jobs
:
...
...
.github/workflows/packages.yml
0 → 100644
View file @
b42811d
#The name of your workflow.
name
:
build
# Trigger the workflow on push or pull request
on
:
push
:
paths
:
-
"
packages/get_core/**"
-
"
.github/workflows/packages.yaml"
pull_request
:
paths
:
-
"
packages/get_core/**"
-
"
.github/workflows/packages.yaml"
#A workflow run is made up of one or more jobs. Jobs run in parallel by default.
jobs
:
test
:
#The type of machine to run the job on. [windows,macos, ubuntu , self-hosted]
runs-on
:
macos-latest
#sequence of tasks called
steps
:
# The branch or tag ref that triggered the workflow will be checked out.
# https://github.com/actions/checkout
-
uses
:
actions/checkout@v1
# Setup a flutter environment.
# https://github.com/marketplace/actions/flutter-action
-
uses
:
subosito/flutter-action@v1
with
:
flutter-version
:
'
1.20.4'
channel
:
'
stable'
-
run
:
flutter pub get
#- run: flutter analyze
# run flutter widgets tests and unit tests
-
run
:
flutter test --coverage
# Upload coverage reports to Codecov
# https://github.com/marketplace/actions/codecov
-
uses
:
codecov/codecov-action@v1.0.7
...
...
Please
register
or
login
to post a comment