remove unused dotfiles
This commit is contained in:
parent
47f4f46e65
commit
bcdedce006
@ -1,9 +0,0 @@
|
||||
version = 1
|
||||
|
||||
[[analyzers]]
|
||||
name = "go"
|
||||
enabled = true
|
||||
|
||||
[analyzers.meta]
|
||||
import_path = "github.com/boramalper/magnetico"
|
||||
dependencies_vendored = false
|
3
.env
3
.env
@ -1,3 +0,0 @@
|
||||
MAGNETICOD_DATA=./magneticod_data/
|
||||
MAGNETICOD_CONFIG=./magneticod_conf/
|
||||
MAGNETICOW_CONFIG=./magneticow_conf/
|
10
.github/FUNDING.yml
vendored
10
.github/FUNDING.yml
vendored
@ -1,10 +0,0 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: boramalper # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: boramalper # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
custom: # Replace with a single custom sponsorship URL
|
||||
liberapay: boramalper
|
11
.github/dependabot.yml
vendored
11
.github/dependabot.yml
vendored
@ -1,11 +0,0 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "gomod"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
35
.github/workflows/go.yml
vendored
35
.github/workflows/go.yml
vendored
@ -1,35 +0,0 @@
|
||||
name: Go
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: Set up Go 1.x
|
||||
uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: ^1.16
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
make magneticod
|
||||
make magneticow
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
make test
|
||||
|
||||
- name: Lint
|
||||
uses: dominikh/staticcheck-action@v1.2.0
|
||||
with:
|
||||
install-go: false
|
||||
|
||||
- name: Check Formatting
|
||||
run: |
|
||||
make check-formatting
|
36
.travis.yml
36
.travis.yml
@ -1,36 +0,0 @@
|
||||
# https://docs.travis-ci.com/user/reference/overview/#virtualisation-environment-vs-operating-system
|
||||
sudo: false
|
||||
dist: xenial
|
||||
|
||||
language: go
|
||||
go:
|
||||
- "1.13"
|
||||
|
||||
env:
|
||||
- GO111MODULE=on
|
||||
|
||||
# Only clone the most recent commit.
|
||||
git:
|
||||
depth: 1
|
||||
|
||||
before_install:
|
||||
# Dump environment variables
|
||||
- printenv
|
||||
|
||||
install:
|
||||
- "go get -u -v github.com/kevinburke/go-bindata/..."
|
||||
|
||||
before_script:
|
||||
- "make magneticod"
|
||||
- "make magneticow"
|
||||
- "make image"
|
||||
|
||||
script:
|
||||
# The Unit Tests
|
||||
- "make test"
|
||||
|
||||
# Static Analysis (vet)
|
||||
- "make vet"
|
||||
|
||||
# Check formatting
|
||||
- "make check-formatting"
|
Loading…
Reference in New Issue
Block a user