enhanced the day's details by adding key panchanga elements and refactored the code for improved efficiency. #58
Workflow file for this run
  
    
      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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Qt | |
| uses: jurplel/install-qt-action@v3 | |
| with: | |
| aqtversion: '==3.1.*' | |
| version: '6.2.0' | |
| host: 'linux' | |
| target: 'desktop' | |
| arch: 'gcc_64' | |
| tools: 'tools_cmake' | |
| archives: 'qttools qtsvg qtdeclarative qtbase icu' | |
| - name: Build Project | |
| run: | | |
| mkdir build | |
| cd build | |
| qmake ../nepdate.pro | |
| make |