diff --git a/README.md b/README.md index c62fbf5..b76cbb0 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,8 @@ update (configuration is in `.github/workflows/test_and_deploy.yml`). You can monitor them in the "Actions" tab of your github repository. If you're following along, go have a look... they should be running right now! +Currently, the timeout for these runs is set to 30 minutes to save resources. You can modify the settings if necessary. Here you can find information on [GitHub workflows](https://docs.github.com/en/actions/learn-github-actions) and the [timeout parameter](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes). + When the tests are done, test coverage will be viewable at [codecov.io](https://codecov.io/) (assuming your repository is public): `https://codecov.io/gh//` diff --git a/{{cookiecutter.plugin_name}}/.github/workflows/test_and_deploy.yml b/{{cookiecutter.plugin_name}}/.github/workflows/test_and_deploy.yml index 7522486..13e8504 100644 --- a/{{cookiecutter.plugin_name}}/.github/workflows/test_and_deploy.yml +++ b/{{cookiecutter.plugin_name}}/.github/workflows/test_and_deploy.yml @@ -20,6 +20,7 @@ jobs: test: name: ${{ matrix.platform }} py${{ matrix.python-version }} runs-on: ${{ matrix.platform }} + timeout: 30 strategy: matrix: platform: [ubuntu-latest, windows-latest, macos-latest]