mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
Add Github Actions support code
This commit is contained in:
parent
796b60dd45
commit
ad3b8df97e
2 changed files with 70 additions and 0 deletions
27
.github/main.workflow
vendored
Normal file
27
.github/main.workflow
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
workflow "Check Irssi" {
|
||||
on = "push"
|
||||
resolves = [
|
||||
"script",
|
||||
"unit_tests",
|
||||
]
|
||||
}
|
||||
|
||||
action "install" {
|
||||
uses = "irssi-import/actions-irssi/check-irssi@master"
|
||||
args = "before_install install"
|
||||
}
|
||||
|
||||
action "script" {
|
||||
uses = "irssi-import/actions-irssi/check-irssi@master"
|
||||
needs = ["install"]
|
||||
args = "before_script script after_script"
|
||||
env = {
|
||||
TERM = "xterm"
|
||||
}
|
||||
}
|
||||
|
||||
action "unit_tests" {
|
||||
uses = "irssi-import/actions-irssi/check-irssi@master"
|
||||
needs = ["install"]
|
||||
args = "unit_tests after_unit_tests"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue