Skip to content

ci(github-actions): install libreoffice on github actions #127

ci(github-actions): install libreoffice on github actions

ci(github-actions): install libreoffice on github actions #127

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.21"
- name: Install libreoffice
run: |
sudo apt-get update
sudo apt-get -y install libreoffice
- name: Install dependencies
run: go get .
- name: Test
run: go test -v ./...