Closed
Description
After about 3 weeks the builds expire and our README/pypi/npm build badges go to "Never been built". I think we should do weekly builds via:
schedules:
- cron: "0 0 * * 0"
displayName: Weekly build on Sunday evenings
branches:
include:
- main
always: true
the always
will ensure that even if no code updates, we build weekly. This is helpful for checking dependency issues earlier (e.g. #1259 ) as well as build system problems (e.g. #1253 )