2024-04-30 10:39:54 +02:00
|
|
|
name: Build and Release
|
|
|
|
run-name: ${{ gitea.actor }}
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
run-terraform:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: '3.12'
|
|
|
|
- name: Install pipenv
|
|
|
|
run: pip install pipenv
|
|
|
|
- name: Run pipenv install
|
|
|
|
run: pipenv install --dev
|
2024-04-30 11:05:37 +02:00
|
|
|
# Disabling until we can mock mastodon communication
|
|
|
|
# - name: Run Pytest
|
|
|
|
# run: pipenv run pytest
|
2024-04-30 10:41:39 +02:00
|
|
|
- name: Bump Version
|
|
|
|
run: pipenv run bumpver update --minor
|
2024-04-30 10:39:54 +02:00
|
|
|
|