Skip to content

Commit

Permalink
Merge pull request #30 from osspkg/develop
Browse files Browse the repository at this point in the history
full refactoring
  • Loading branch information
markus621 committed Jun 23, 2023
2 parents 16b49ef + 64b1490 commit a8881aa
Show file tree
Hide file tree
Showing 66 changed files with 1,008 additions and 1,195 deletions.
29 changes: 0 additions & 29 deletions .deb.yaml

This file was deleted.

6 changes: 1 addition & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
# 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" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
20 changes: 11 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@

name: CI

on:
push:
branches: [master]
branches: [ master ]
pull_request:
branches: [master]
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.20' ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: ${{ matrix.go }}

- name: CI
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
- name: Run CI
run: make ci
72 changes: 0 additions & 72 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '16 8 * * 1'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'go' ]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
54 changes: 0 additions & 54 deletions .github/workflows/deb.yml

This file was deleted.

20 changes: 4 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,10 @@
*.out
*.lock
*.log
*.dev.yaml

.DS_Store
.glide
# vendor/
.idea
.vscode
.tools
vendor
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/
/.idea
/build/bin/*

*.log
*.sqlite3
.tools/
build/
Loading

0 comments on commit a8881aa

Please sign in to comment.