Skip to content
Open
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
3 changes: 0 additions & 3 deletions .github/workflows/VM Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,3 @@ jobs:
chmod -R 0777 ./.docker
docker compose down
docker compose --profile redis up --build -d
#testing vm deploy

# testing VM Deploy
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
steps:
- uses: actions/checkout@v4

Expand All @@ -25,7 +27,7 @@ jobs:

# Make Coveralls non-blocking and only run if a token exists
- name: Upload coverage to Coveralls (non-blocking)
if: ${{ secrets.COVERALLS_REPO_TOKEN != '' && always() }}
if: ${{ env.COVERALLS_REPO_TOKEN != '' }}
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading