migration

This commit is contained in:
wh1t3fox
2020-07-30 11:32:03 -04:00
parent 4bf537c789
commit 70e5ba252c
4 changed files with 53 additions and 0 deletions

7
.dockerignore Normal file
View File

@ -0,0 +1,7 @@
assets
_config.yml
configs
CNAME
LICENSE
Makefile
README.md

1
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1 @@
custom: https://btc.com/1MWDmy4KyzuLbyyiik1G8274oi4HKTWsEC

38
.github/workflows/linter.yml vendored Normal file
View File

@ -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

7
.travis.yml Normal file
View File

@ -0,0 +1,7 @@
dist: bionic
jobs:
include:
- stage: build docker image
script:
- make build