Skip to content

Add read and write for UA_String type; run tests against opc server #23

Add read and write for UA_String type; run tests against opc server

Add read and write for UA_String type; run tests against opc server #23

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: >-
${{ matrix.os }} ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-22.04 # jammy
- windows-2022
ruby:
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
- '2.4'
fail-fast: false
env:
BUNDLE_WITHOUT: development
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bin/rake spec