Skip to content

update on the shapes methods to use DrawPixel #22

update on the shapes methods to use DrawPixel

update on the shapes methods to use DrawPixel #22

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.22.1' # Use the version of Go your project requires
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev libasound2-dev libpulse-dev libxext-dev libxkbcommon-dev libwayland-dev
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Run tests
run: go test -v ./...