-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a workflow action to verify the calculations. Signed-off-by: Tzvetomir Stoyanov <tz.stoyanov@gmail.com>
- Loading branch information
1 parent
20f9ee2
commit 80da4c7
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: iRainCalc CI | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
schedule: | ||
- cron: '0 15 * * THU' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build | ||
working-directory: ${{runner.workspace}}/ | ||
shell: bash | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install python3.10 | ||
sudo apt-get install libblas3 liblapack3 liblapack-dev libblas-dev -y | ||
cd ${{runner.workspace}}/iraincalc/ | ||
python3.10 -m venv .venv | ||
source .venv/bin/activate | ||
pip install -r requirements.txt | ||
mkdir out | ||
./iraincalc.py -l ./test/links.csv -s ./test/data.csv -p ./out/ | ||
echo "Comparing the output" | ||
ls -al ./out/ | ||
diff ./out/ ./test/out |