Prevent multiple birth stat display handlers from being registered #1089
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: Windows | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
build: | |
name: Stock | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Build Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-mingw-w64 automake autoconf make | |
- name: Clone Project | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
./autogen.sh | |
./configure --enable-win --build=i686-pc-linux-gnu --host=i686-w64-mingw32 | |
make | |