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 245eaa9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI
on:
push:
pull_request:
schedule:
- cron: "0 0 1 * *" # run monthly
jobs:
build:
runs-on: ubuntu-20.04
container:
image: python:2.7.18-buster
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@v3
- name: Check python
run: |
python --version
- name: Check sqlite3
run: |
sudo apt install sqlite3
sqlite3 --version
- name: Check curl
run: |
curl --version
- name: Check jq
run: |
jq --version

0 comments on commit 245eaa9

Please sign in to comment.