Skip to content

feat(stremio/store): support webdl for debridlink #2305

feat(stremio/store): support webdl for debridlink

feat(stremio/store): support webdl for debridlink #2305

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main]
paths-ignore:
- sdk/**
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install Dependencies
run: go get .
- name: Check Format
run: test -z "$(gofmt -l . | tee /dev/stderr)"
- name: Lint
run: go vet
- name: Build
run: go build --tags "fts5" -v ./...
- name: Test
run: STREMTHRU_ENV=test go test --tags "fts5" -v ./...