mirror of
https://github.com/trailofbits/algo.git
synced 2025-08-03 03:13:33 +02:00
add super linter
This commit is contained in:
parent
4e739b518f
commit
f4d59e427f
3 changed files with 27 additions and 1 deletions
25
.github/workflows/linter.yml
vendored
Normal file
25
.github/workflows/linter.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
name: Lint Code Base
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore: [master]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Lint Code Base
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Lint Code Base
|
||||||
|
uses: docker://github/super-linter:v3
|
||||||
|
env:
|
||||||
|
DEFAULT_BRANCH: master
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
ANSIBLE_DIRECTORY: .
|
||||||
|
ANSIBLE_FILE_NAME: .ansible-lint
|
||||||
|
OUTPUT_DETAILS: detailed
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
[](https://twitter.com/AlgoVPN)
|
[](https://twitter.com/AlgoVPN)
|
||||||
[](https://github.com/trailofbits/algo/actions)
|
[](https://github.com/trailofbits/algo/actions)
|
||||||
|
[](https://github.com/marketplace/actions/super-linter)
|
||||||
|
|
||||||
Algo VPN is a set of Ansible scripts that simplify the setup of a personal WireGuard and IPsec VPN. It uses the most secure defaults available and works with common cloud providers. See our [release announcement](https://blog.trailofbits.com/2016/12/12/meet-algo-the-vpn-that-works/) for more information.
|
Algo VPN is a set of Ansible scripts that simplify the setup of a personal WireGuard and IPsec VPN. It uses the most secure defaults available and works with common cloud providers. See our [release announcement](https://blog.trailofbits.com/2016/12/12/meet-algo-the-vpn-that-works/) for more information.
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
X-Auth-Token: "{{ algo_scaleway_token }}"
|
X-Auth-Token: "{{ algo_scaleway_token }}"
|
||||||
|
|
||||||
- name: Start the server
|
- name: Start the server
|
||||||
scaleway_compute:
|
scaleway_compute:
|
||||||
name: "{{ algo_server_name }}"
|
name: "{{ algo_server_name }}"
|
||||||
enable_ipv6: true
|
enable_ipv6: true
|
||||||
public_ip: dynamic
|
public_ip: dynamic
|
||||||
|
|
Loading…
Add table
Reference in a new issue