Skip to content

Commit

Permalink
Setup of GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-grodek-dsai committed Sep 22, 2023
1 parent 6eac724 commit ad4412e
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:

tests:
runs-on: ubuntu-latest
container: python:3.11

steps:
- uses: actions/checkout@v2

- name: Cache Dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: pip install -r requirements.txt

- name: Run Tests
run: pytest -v -p no:warnings --junitxml=report.xml tests/

- name: Publish Test Report
uses: actions/upload-artifact@v2
with:
name: Test Report
path: report.xml
retention-days: 10

pages:
runs-on: ubuntu-latest
container: python:3.9-buster

steps:
- uses: actions/checkout@v2

- name: Cache Dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: pip install -r requirements.txt

- name: Build docs
run: ./build_docs.sh

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public

0 comments on commit ad4412e

Please sign in to comment.