diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..8983cf6 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +assets +_config.yml +configs +CNAME +LICENSE +Makefile +README.md diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..d646acc --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +custom: https://btc.com/1MWDmy4KyzuLbyyiik1G8274oi4HKTWsEC diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 0000000..e1c9011 --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,38 @@ +--- +########################### +########################### +## Linter GitHub Actions ## +########################### +########################### +name: Lint Code Base + +on: [push, pull_request] + +############### +# Set the Job # +############### +jobs: + build: + # Name the Job + name: Lint Code Base + # Set the agent to run on + runs-on: ubuntu-latest + + ################## + # Load all steps # + ################## + steps: + ########################## + # Checkout the code base # + ########################## + - name: Checkout Code + uses: actions/checkout@v2 + + ################################ + # Run Linter against code base # + ################################ + - name: Lint Code Base + uses: docker://github/super-linter:v3 + env: + VALIDATE_BASH: true + VALIDATE_DOCKER: false diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bc2ef01 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +dist: bionic + +jobs: + include: + - stage: build docker image + script: + - make build