Skip to content

Commit

Permalink
Apply updates from cookiecutter
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospri committed Sep 3, 2024
1 parent 9c57166 commit c8d5cec
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,11 @@ jobs:
env:
COVERAGE_FILE: .coverage.${{ matrix.python-version }}
- name: Upload coverage file
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v3
with:
name: coverage
path: .coverage.*
include-hidden-files: true
Coverage:
needs: tests
runs-on: ubuntu-latest
Expand Down Expand Up @@ -189,7 +190,6 @@ jobs:
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Install Python
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/keepalive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Prevent scheduled workflows from being disabled due to inactivity.
#
# GitHub disables scheduled workflows after 60 days of repo inactivity:
#
# > Warning: To prevent unnecessary workflow runs, scheduled workflows may be
# > disabled automatically.
# > ... In a public repository, scheduled workflows are automatically disabled
# > when no repository activity has occurred in 60 days.
#
# https://docs.github.com/en/actions/using-workflows/disabling-and-enabling-a-workflow
#
# This keep-alive workflow triggers whenever one of the scheduled workflows
# listed below completes and prevents that scheduled workflow from being
# disabled.
name: Keepalive
on:
workflow_run:
workflows: [CI]
types: [completed]
branches: [main]
jobs:
Keepalive:
uses: hypothesis/workflows/.github/workflows/keepalive.yml@main

0 comments on commit c8d5cec

Please sign in to comment.