Skip to content

Commit

Permalink
Merge pull request #4 from valory-xyz/feature/make-it-public
Browse files Browse the repository at this point in the history
chore: make it public
  • Loading branch information
DavidMinarsch authored Oct 23, 2023
2 parents c0bc55f + 0ee7abf commit 7951506
Show file tree
Hide file tree
Showing 4 changed files with 345 additions and 4 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Olas-api server checks

on:
push:
branches:
- main
pull_request:

jobs:
mypy:
name: mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: jpetrucciani/mypy-check@9d0dbdd56173d91f06d975767135d196e2aa2da9
with:
requirements: "Flask flask-caching web3"
isort:
name: isort
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.10"
- uses: isort/isort-action@master
black:
name: black
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
gitleaks:
name: gitleaks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: "1.17.7"
- run: |
wget https://github.com/zricethezav/gitleaks/releases/download/v8.10.1/gitleaks_8.10.1_linux_x64.tar.gz && \
tar -xzf gitleaks_8.10.1_linux_x64.tar.gz && \
sudo install gitleaks /usr/bin && \
gitleaks detect --report-format json --report-path leak_report
Loading

0 comments on commit 7951506

Please sign in to comment.