Trigger (#4) #18
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
name: Check Builds | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
# --------------------------------------------------------------------------- | |
build-on-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Display cargo version | |
run: cargo --version | |
- name: Try to Build | |
run: cargo build --verbose --release | |
# --------------------------------------------------------------------------- | |
build-on-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Display cargo version | |
run: cargo --version | |
- name: Try to Build | |
run: cargo build --verbose --release | |