Skip to content

feat: use modern user agents #38

feat: use modern user agents

feat: use modern user agents #38

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
continuous-integration:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
- name: Unit tests
run: go test -v ./...
- name: Setup Integration tests
run: |
python -m pip install --upgrade pip
python -m pip install -r test/requirements.txt
- name: Integration tests
run: pytest