mirror of
https://gitea.smigz.com/smiggiddy/s3_cleanup.git
synced 2024-12-26 05:00:42 -05:00
16 lines
529 B
YAML
16 lines
529 B
YAML
name: learn-gitea-actions
|
|
run-name: ${{ gitea.actor }} is learning Gitea Actions
|
|
on: [push]
|
|
env:
|
|
ACCESS_KEY: ${{ secrets.ACCESS_KEY }}
|
|
SECRET_KEY: ${{ secrets.SECRET_KEY }}
|
|
jobs:
|
|
check-bats-version:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 'pypy3.10'
|
|
- run: pip install --upgrade pip
|
|
- run: pip install -r requirements.txt && python3 main.py --bucket "smiggiddy" --host "us-east-1.linodeobjects.com"
|