mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-04 13:49:15 +01: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.
8 lines
227 B
Bash
Executable file
8 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
|