37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: Gitea Actions For AIIA
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11.7'
|
|
|
|
- name: Cache pip and model
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cache/pip
|
|
./fabel
|
|
key: ${{ runner.os }}-pip-model-${{ hashFiles('requirements.txt', 'requirements-dev.txt') }}
|
|
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-model-
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install -r requirements-dev.txt
|
|
pip install -e .
|
|
- name: Run tests
|
|
run: |
|
|
pytest tests/ |