Skip to content

feat: add homepage

feat: add homepage #13

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Setup Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run tests
run: |
nix develop --command bash -c "pip install -r requirements.txt && pytest tests/ -v --cov=custom_components.cowboy"