File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ push :
4
+ branches : [master]
5
+ tags : ['v*']
6
+ pull_request : { branches: [master] }
7
+ schedule : [ cron: '7 4 12 * *' ]
8
+ workflow_dispatch :
9
+
10
+ jobs :
11
+ test :
12
+ timeout-minutes : 5
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ - run : shellcheck -S warning *.sh
17
+ - run : sudo apt-get install --no-install-recommends bubblewrap
18
+ - run : bash ./smoke-test.sh
19
+
20
+ workflow-keepalive :
21
+ if : github.event_name == 'schedule'
22
+ runs-on : ubuntu-latest
23
+ permissions :
24
+ actions : write
25
+ steps :
26
+ - uses : liskin/gh-workflow-keepalive@f72ff1a1336129f29bf0166c0fd0ca6cf1bcb38c # v1.2.1
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
# sandbox-venv: Secure container sandbox venv wrapper (GENERATED CODE)
3
3
set -eu
4
- set -x
4
+
5
5
alias realpath=' realpath --no-symlinks'
6
6
warn () { echo " sandbox-venv/wrapper: $* " >&2 ; }
7
7
Original file line number Diff line number Diff line change 6
6
printf " \033[36;40;1m+%s${lineno:- } \033[0m " " $0 "
7
7
) "
8
8
export PS4
9
-
10
9
set -x
11
10
12
11
" ${0%/* } /build.sh"
You can’t perform that action at this time.
0 commit comments