FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
websocket/.github/workflows/static.yml at master · coder/websocket · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
coder
/
websocket
Public
Notifications
You must be signed in to change notification settings
Fork
374
Star
5.4k
Code
Issues
54
Pull requests
17
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
websocket
/
.github
/
workflows
/
static.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
52 lines (48 loc) · 1.55 KB
Breadcrumbs
websocket
/
.github
/
workflows
/
static.yml
Copy path
File metadata and controls
52 lines (48 loc) · 1.55 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name
:
static
on
:
push
:
branches
:
['master']
workflow_dispatch
:
#
Set permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages.
permissions
:
contents
:
read
pages
:
write
id-token
:
write
concurrency
:
group
:
pages
cancel-in-progress
:
true
jobs
:
deploy
:
environment
:
name
:
github-pages
url
:
${{ steps.deployment.outputs.page_url }}
runs-on
:
ubuntu-latest
steps
:
-
name
:
Disable AppArmor
if
:
runner.os == 'Linux'
run
:
|
# Disable AppArmor for Ubuntu 23.10+.
# https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md
echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Setup Pages
uses
:
actions/configure-pages@v5
-
name
:
Setup Go
uses
:
actions/setup-go@v5
with
:
go-version-file
:
./go.mod
-
name
:
Generate coverage and badge
run
:
|
make test
mkdir -p ./ci/out/static
cp ./ci/out/coverage.html ./ci/out/static/coverage.html
percent=$(go tool cover -func ./ci/out/coverage.prof | tail -n1 | awk '{print $3}' | tr -d '%')
wget -O ./ci/out/static/coverage.svg "https://img.shields.io/badge/coverage-${percent}%25-success"
-
name
:
Upload artifact
uses
:
actions/upload-pages-artifact@v3
with
:
path
:
./ci/out/static/
-
name
:
Deploy to GitHub Pages
id
:
deployment
uses
:
actions/deploy-pages@v4
Back
|
FazBrowse Home
|
New Git URL