Skip to content

Commit

Permalink
Merge pull request #22 from The-Gleb/iter23
Browse files Browse the repository at this point in the history
- Add asymmetric encryption
- Add parsing config from json
- Graceful shutdown on SIGTERM,SIGQUIT,SIGINT
  • Loading branch information
The-Gleb authored Apr 17, 2024
2 parents fa1efbe + 78294ad commit dfde47f
Show file tree
Hide file tree
Showing 66 changed files with 3,771 additions and 2,979 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/golanci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: static test

on:
pull_request:
push:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- uses: actions/setup-go@v4
with:
go-version: '1.22'

- name: Run golangci-lint
uses: golangci/[email protected]
with:
working-directory: ./
2 changes: 1 addition & 1 deletion .github/workflows/mertricstest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
metricstest:
runs-on: ubuntu-latest
container: golang:1.21
container: golang:1.22.1
needs: branchtest

services:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/statictest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
statictest:
runs-on: ubuntu-latest
container: golang:1.21
container: golang:1.22.1
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ playground.go

# Metrictest
metricstest
random
random

golangci-lint
Loading

0 comments on commit dfde47f

Please sign in to comment.