Skip to content

chore(action): add golangci-lint@v6 action #96

chore(action): add golangci-lint@v6 action

chore(action): add golangci-lint@v6 action #96

Workflow file for this run

name: "CI: Tests"
on:
pull_request:
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Cache pip
uses: actions/cache@v2
with:
path: venv
key: pip-v1-${{ hashFiles('dev-requirements.txt') }}
restore-keys: |
pip-v1-
- name: Install dependencies
run: make sync
- name: Run the tests
run: make tests