Minimum Dependencies #449
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Minimum Dependencies | |
# Installs the minimum versions of the dependencies and runs the tests. | |
# This test will lower the chance that users botch their installation by | |
# only upgrading this project but not the dependencies. | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab. | |
workflow_dispatch: | |
schedule: | |
- # Run every day at 5:00 UTC. | |
- cron: "0 5 * * *" | |
jobs: | |
call-minimum-dependencies: | |
uses: AstarVienna/DevOps/.github/workflows/minimumdependencies.yml@master |