pymastodon/.gitea/workflows/run.yaml

31 lines
822 B
YAML
Raw Normal View History

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
2024-04-30 11:07:19 +02:00
run: |
git config --global user.name 'Gitea Actions'
git config --global user.email 'gitea@gitea.moerks.dk'
pipenv run bumpver update --minor
2024-04-30 10:39:54 +02:00