Skip to content

feat: ui: show spinner when async station check #168

feat: ui: show spinner when async station check

feat: ui: show spinner when async station check #168

Workflow file for this run

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