File tree Expand file tree Collapse file tree 3 files changed +17
-8
lines changed
mobile/src/main/java/io/syslogic/github Expand file tree Collapse file tree 3 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,19 @@ jobs:
33
33
architecture : x64
34
34
35
35
- name : Build with Gradle
36
- run : ./gradlew :mobile:bundleDebug
36
+ run : ./gradlew :library:lint :mobile:lint :mobile:bundleDebug
37
+
38
+ # https://github.com/actions/upload-artifact
39
+ - name : 📦 Retain Artifacts (Release AAR)
40
+ id : retain-library-aar
41
+ uses : actions/upload-artifact@v3
42
+ with :
43
+ name : androidx-github
44
+ path : ./library/build/outputs/aar/*.aar
45
+ retention-days : 14
37
46
38
47
- name : 📦 Retain Artifacts (Debug AAB)
39
- id : retain-debug-aab
48
+ id : retain-app- debug-aab
40
49
uses : actions/upload-artifact@v3
41
50
with :
42
51
name : androidx-github
48
57
uses : actions/upload-artifact@v3
49
58
with :
50
59
name : androidx-github
51
- path : ./mobile/build/reports/*
60
+ path : |
61
+ ./library/build/reports/*
62
+ ./mobile/build/reports/*
52
63
retention-days : 14
Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ public class WorkflowJobsFragment extends BaseFragment {
43
43
Long repositoryId = -1L ;
44
44
45
45
/** The repository's owner. */
46
- private String repositoryOwner ;
46
+ String repositoryOwner ;
47
47
48
48
/** The repository's name. */
49
- private String repositoryName ;
49
+ String repositoryName ;
50
50
51
51
/** The workflow run's ID. */
52
52
private Long runId = -1L ;
Original file line number Diff line number Diff line change @@ -56,9 +56,7 @@ public class RepositoriesAdapter extends RecyclerView.Adapter<RecyclerView.ViewH
56
56
57
57
ArrayList <Repository > mItems = new ArrayList <>();
58
58
59
- private static WeakReference <Context > mContext ;
60
-
61
-
59
+ static WeakReference <Context > mContext ;
62
60
63
61
/** This may add the account in debug mode and therefore must be called first. */
64
62
private String accessToken = null ;
You can’t perform that action at this time.
0 commit comments