feat: ui: show spinner when async station check #168
This file contains hidden or 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: nim CI | |
| on: | |
| push: | |
| paths: | |
| - 'pnimrp.nim' | |
| - 'src/**' | |
| pull_request: | |
| paths: | |
| - 'pnimrp.nim' | |
| - 'src/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install Nim | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y nim | |
| - name: Build the project (Linux x64) | |
| run: nim c pnimrp.nim | |
| - name: try to gen source for (Windows x64) | |
| run: nim c -c --os:windows pnimrp.nim | |
| - name: try to gen source for (FreeBSD x64) | |
| run: nim c -c --os:freebsd pnimrp.nim | |
| - name: try to gen source for (Android arm64) | |
| run: nim c -c --os:android --cpu:arm64 pnimrp.nim |