Skip to content

Commit

Permalink
Add CI with GH Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnikz committed Sep 4, 2024
1 parent 0c65a6f commit 207c7ae
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on:
push:
pull_request:
schedule:
- cron: "0 0 1 * *" # run monthly
jobs:
build:
runs-on: ubuntu-latest
env:
APP_NAME: PIQMIe
APP_CONFIG: config.ini
APP_BASE_URL: http://127.0.0.1:8080
APP_DATA: a000000000000000000000000000000000000001
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Check python
run: |
sudo update-alternatives --config python
- name: Check sqlite3
run: |
sqlite3 --version
- name: Check curl
run: |
curl --version
- name: Check jq
run: |
jq --version

0 comments on commit 207c7ae

Please sign in to comment.