Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bot] synced file(s) with Wall-Brew-Co/rebroadcast #110

Merged
merged 2 commits into from
May 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/deploy_to_clojars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,13 @@ jobs:
${{ runner.os }}-clj

- name: Install Clojure dependencies
run: |
lein deps && lein project-version
run: lein deps

- name: Validate Changelog Status
run: lein sealog check

- name: Display Version
run: lein sealog version

- name: Run sanity tests
run: lein test
Expand All @@ -42,7 +47,7 @@ jobs:

- name: Resolve version
id: versionchk
run: echo "::set-output name=VERSION::$(lein project-version)"
run: echo "VERSION=$(lein sealog version project.clj | tail -n 1)" >> $GITHUB_OUTPUT

- name: Push Tag
uses: hole19/[email protected]
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,17 @@ jobs:
level: error
filter_mode: file

sealog:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/[email protected]
with:
ref: ${{ github.head_ref }}

- name: Validate Sealog Entries
run: lein sealog check

# This file was automatically copied and populated by rebroadcast
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/lint.yml
Loading