Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
superstes committed Sep 18, 2023
1 parent 0021cc1 commit 27c1011
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---

name: Lint

on:

Check warning on line 5 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / build (3.1)

5:1 [truthy] truthy value should be one of [false, true]
push:
branches: [latest, v*]
pull_request:
branches: [latest, v*]

jobs:
build:
strategy:
matrix:
python-version: [3.10]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: pip install -r requirements_test.txt
shell: bash

- name: Running Yamllint
run: yamllint .
shell: bash


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

- name: golangci-lint
uses: golangci/golangci-lint-action@v3

0 comments on commit 27c1011

Please sign in to comment.