Skip to content

Commit

Permalink
#1 merging gh action kits together
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnyprod committed Jul 8, 2022
1 parent 4d9b8ea commit 0ebfda0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 31 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build.yml → .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Build Source'
name: 'Main'

# **What it does**: Renders the content of every page and check all internal links.
# **Why we have it**: To make sure all links connect correctly.
Expand Down Expand Up @@ -57,4 +57,15 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: build
path: build/distributions
path: build/distributions
tests:
runs-on: ubuntu-latest
needs:
- build
steps:
- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: build
- name: Run tests
run: ./gradlew test
29 changes: 0 additions & 29 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 0ebfda0

Please sign in to comment.