Add read and write for UA_String type; run tests against opc server #23
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |