Skip to content

feat: add improvements to the http server (#65) #187

feat: add improvements to the http server (#65)

feat: add improvements to the http server (#65) #187

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"
- name: Install linux dependencies
run: |
sudo apt-get update && sudo apt-get upgrade
sudo apt-get -y install libreoffice calibre
- name: Setup ffmpeg
uses: FedericoCarboni/setup-ffmpeg@v3
id: setup-ffmpeg
with:
ffmpeg-version: 6.1.0
github-token: ${{ github.server_url == 'https://github.com' && github.token || '' }}
- name: Install Go dependencies
run: go get .
- name: Test
run: go test -v ./...