Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ServerPackCreatorExampleAddon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
JetBrains YouTrack
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Griefed
ServerPackCreatorExampleAddon
Commits
d080074e
Commit
d080074e
authored
3 years ago
by
Griefed
Browse files
Options
Downloads
Patches
Plain Diff
ci: Improve GitHub related workflows and add tests
parent
98674d9d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/dependabot.yml
+28
-0
28 additions, 0 deletions
.github/dependabot.yml
.github/workflows/test.yml
+30
-0
30 additions, 0 deletions
.github/workflows/test.yml
with
58 additions
and
0 deletions
.github/dependabot.yml
0 → 100644
+
28
−
0
View file @
d080074e
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version
:
2
updates
:
-
package-ecosystem
:
"
github-actions"
directory
:
"
/"
schedule
:
interval
:
"
weekly"
assignees
:
-
"
Griefed"
labels
:
-
"
dependencies"
-
"
github-actions"
target-branch
:
"
dependabot"
-
package-ecosystem
:
"
gradle"
directory
:
"
/"
schedule
:
interval
:
"
weekly"
assignees
:
-
"
Griefed"
labels
:
-
"
dependencies"
-
"
gradle"
target-branch
:
"
dependabot"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.github/workflows/test.yml
0 → 100644
+
30
−
0
View file @
d080074e
name
:
Test
on
:
push
:
pull_request
:
branches
:
-
main
-
master
-
develop
-
dependabot
workflow_dispatch
:
jobs
:
test
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up JDK
8
uses
:
actions/setup-java@v2
with
:
distribution
:
'
adopt'
java-version
:
'
8'
-
name
:
Where is Java
run
:
which java
-
name
:
Grant execute permission for gradlew
run
:
chmod +x gradlew
-
name
:
Build with Gradle
run
:
./gradlew about build --no-daemon --info
-
name
:
List files in libs
run
:
ls -ahl build/libs
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment