Skip to content

feat: add RDP Logon/Logoff to timeline-logon #493

feat: add RDP Logon/Logoff to timeline-logon

feat: add RDP Logon/Logoff to timeline-logon #493

Workflow file for this run

name: Nim
on:
pull_request:
branches:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
matrix:
info:
- {
os: "ubuntu-latest",
target: "x86_64-unknown-linux-gnu",
cross: false,
}
- {
os: "windows-latest",
target: "x86_64-pc-windows-msvc",
cross: false,
}
runs-on: ${{ matrix.info.os }}
steps:
- uses: actions/checkout@v4
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: '2.x' # default is 'stable'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build check
run: nimble build --threads:on -Y
- name: Run tests
run: nimble test --threads:on -Y