Skip to content

Add boolean operator Not, And and Or data bindings. #181

Add boolean operator Not, And and Or data bindings.

Add boolean operator Not, And and Or data bindings. #181

Workflow file for this run

name: Platform Tests
on: [push, pull_request]
permissions:
contents: read
jobs:
platform_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go-version: ['1.14.x', '1.20.x']
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: WillAbides/setup-go-faster@v1.8.0
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libx11-dev xorg-dev libwayland-dev libxkbcommon-dev bc
if: ${{ runner.os == 'Linux' }}
- name: Tests
run: go test -tags ci ./...
- name: Wayland Tests
run: go test -tags ci,wayland ./...
if: ${{ runner.os == 'Linux' }}