Skip to content

Update CHANGELOG noting v1.0.3 #92

Update CHANGELOG noting v1.0.3

Update CHANGELOG noting v1.0.3 #92

Workflow file for this run

# Used the following as reference:
# https://github.com/gtk-rs/gtk-rs-core/blob/master/.github/workflows/windows.yml
on:
push:
branches:
- main
pull_request:
branches:
- main
name: Windows CI
jobs:
check:
name: Compile and Test
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Check Code
run: cargo check
# NOTE: As of 01/29/22, GitHub Actions hangs on running a GUI test, as
# if it's in an infinite loop, so this is disabled for the time
# being.
# - name: Run headless test
# uses: GabrielBB/xvfb-action@v1
# with:
# run: cargo test -- --test-threads=1