Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Update README.md

Update README.md #17

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
env:
DISPLAY: ':99.0'
steps:
- uses: actions/checkout@v2
- name: Update apt
run: sudo apt update
- name: Install xorg-dev
run: sudo apt install xorg-dev
- name: Xvfb
run: Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...