devranta/.gitea/workflows/build.yaml
retoor 4d2c94ecea
All checks were successful
devranta build / Build (push) Successful in 1m29s
Rename build file.
2024-12-03 19:00:36 +01:00

32 lines
811 B
YAML

name: devranta build
run-name: devranta async devRant api client build and test
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Pull repo
run: git pull
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- name: Build new package
run: make build
- name: Install package
run: make install
- name: Run application
run: make run
- name: Test application
run: make test
- name: Push new packages
run: |
git add .
git config --global user.email "bot@molodetz.com"
git config --global user.name "bot"
git commit -a -m "New build."
git push