Update CHANGELOG noting v1.0.3 #92
This file contains 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
# 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 |