Skip to content

Commit fd17bef

Browse files
committed
Cosmetic changes & deactivate automated GitHub Action
1 parent 0a35af8 commit fd17bef

9 files changed

Lines changed: 22 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: CI
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
# push:
5+
# branches:
6+
# - main
77
pull_request:
88
branches:
99
- main
10-
schedule:
11-
- cron: "0 2 * * 1-5"
10+
# schedule:
11+
# - cron: "0 2 * * 1-5"
1212
workflow_dispatch: {}
1313

1414
env:
1515
python_version: "3.10"
1616

1717
jobs:
18-
build:
18+
check-code:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checks-out the repository

docs/communities/go/go-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Go CLI (Command Line Interface)
22

3-
[pkg.go.dev/cmd/go](https://pkg.go.dev/cmd/go), [docs](https://go.dev/doc/cmd)
3+
🌐 [pkg.go.dev/cmd/go](https://pkg.go.dev/cmd/go), [docs](https://go.dev/doc/cmd)
44

55
## Usual commands
66

docs/communities/go/go-file-organization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File organization in a Go project
22

3-
[golang-standards/project-layout](https://github.com/golang-standards/project-layout)
3+
🌐 [golang-standards/project-layout](https://github.com/golang-standards/project-layout)
44

55
## General view
66

docs/communities/go/go-installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installation of Go
22

3-
[Download and install](https://go.dev/doc/install)
3+
🌐 [Download and install](https://go.dev/doc/install)
44

55
## Installation on Ubuntu 20.04
66

docs/communities/go/go-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
> The go.mod file defines the module’s module path, which is also the import path used for the root directory, and its dependency requirements, which are the other modules needed for a successful build.
55
> Each dependency requirement is written as a module path and a specific semantic version.
66
7-
[blog](https://go.dev/blog/using-go-modules), [wiki](https://go.dev/wiki/Modules), [reference](https://go.dev/ref/mod)
7+
🌐 [blog](https://go.dev/blog/using-go-modules), [wiki](https://go.dev/wiki/Modules), [reference](https://go.dev/ref/mod)

docs/communities/go/go-packages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Go Packages
22

3-
[packages](https://pkg.go.dev/)
3+
🌐[packages](https://pkg.go.dev/)
44

55
## Standard Library
66

7-
[pkg.go.dev/std](https://pkg.go.dev/std)
7+
🌐 [pkg.go.dev/std](https://pkg.go.dev/std)
88

99
* [net](https://pkg.go.dev/net)
1010
* [http](https://pkg.go.dev/net/http)

docs/communities/go/go-quality.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44

55
### gofmt
66

7-
[Gofmt](https://pkg.go.dev/cmd/gofmt)
7+
🌐[Gofmt](https://pkg.go.dev/cmd/gofmt)
88

99
Formats Go programs. It uses tabs for indentation and blanks for alignment. Alignment assumes that an editor is using a fixed-width font.
1010

1111
## Linters
1212

1313
### golangci-lint
1414

15-
[golangci-lint](https://golangci-lint.run/) ([GitHub](https://github.com/golangci/golangci-lint))
15+
🌐 [golangci-lint](https://golangci-lint.run/) ([GitHub](https://github.com/golangci/golangci-lint))
1616

1717
### golint
1818

19-
[golint](https://pkg.go.dev/golang.org/x/lint/golint)
19+
🌐 [golint](https://pkg.go.dev/golang.org/x/lint/golint)
2020

2121
## Scanners
2222

2323
### govulncheck
2424

25-
[govulncheck](https://pkg.go.dev/golang.org/x/vuln/cmd/govulncheck) ([The Go Blog - Vulnerability Management for Go](https://go.dev/blog/vuln))
25+
🌐 [govulncheck](https://pkg.go.dev/golang.org/x/vuln/cmd/govulncheck) ([The Go Blog - Vulnerability Management for Go](https://go.dev/blog/vuln))
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# BusyBox
2+
3+
🌐 [busybox.net](https://busybox.net/)

docs/companies/companies.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@
2222
* [Netskope](https://www.netskope.com/)
2323
* [ngrok](ngrok/ngrok.md)
2424
* [Oracle](oracle/oracle.md)
25-
* [Redhat](redhat/redhat.md)
26-
* [SensioLabs](sensiolabs/sensiolabs.md)
25+
* [Perforce](perforce/perforce.md)
26+
* [Red Hat](redhat/redhat.md)
27+
* [Sensio Labs](sensiolabs/sensiolabs.md)
2728
* [Splunk](https://www.splunk.com/)
2829
* [SUSE](suse/suse.md)
2930
* [Sysdig](sysdig/sysdig.md)
31+
* [Tailwind Labs](tailwind-labs/tailwind-labs.md)
3032
* [Tigera](tigera/tigera.md)
3133
* [Ubuntu](ubuntu/ubuntu.md)
3234
* [VMware](vmware/vmware.md)

0 commit comments

Comments
 (0)