Skip to content

build: Update action/checkout from v3 to v4 #210

build: Update action/checkout from v3 to v4

build: Update action/checkout from v3 to v4 #210

Workflow file for this run

name: OPC UA for Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --features test-vendored-openssl
- name: Run tests
run: cargo test --features test-vendored-openssl --verbose
- name: Run integration tests
run: |
cd integration
sh ./run.sh
build-windows:
runs-on: windows-latest
env:
VCPKGRS_DYNAMIC: 1
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --features test-vendored-openssl
- name: Run tests
run: cargo test --features test-vendored-openssl --verbose