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 004e185
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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: Install apt packages
run: |
apt update && apt install -y sqlite jq
- name: Check pkg versions
run: |
sqlite3 --version
jq --version
curl --version
- name: Info
run: |
pwd
ls

0 comments on commit 004e185

Please sign in to comment.