mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
4db65f911a
This creates a GHA workflow which runs at 8am every day, and runs mypy, trial and sytest against Twisted's current trunk. If any of the jobs fail, it opens an issue.
9 lines
227 B
Bash
Executable File
9 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# replaces the dependency on Twisted in `python_dependencies` with trunk.
|
|
|
|
set -e
|
|
cd "$(dirname "$0")"/..
|
|
|
|
sed -i -e 's#"Twisted.*"#"Twisted @ git+https://github.com/twisted/twisted"#' synapse/python_dependencies.py
|