Added second workflow action
All checks were successful
Fibonacci unit tests / Containerize (push) Successful in 5s
Fibonacci unit tests / Run-unit-tests (push) Successful in 6s

This commit is contained in:
2025-07-24 13:34:39 +02:00
parent a7e89f9411
commit ffadbf9b8f
2 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
name: Fibonacci unit tests
run-name: ${{ gitea.actor }} is testing Fibonacci
on:
push:
branches:
- 'deployment'
- 'build'
jobs:
Containerize:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install go
uses: actions/setup-go@v5
with:
go-version: '1.24.4'
check-latest: true
- name: Containerize app
run: exit 0

View File

@@ -1,9 +1,12 @@
name: Fibonacci unit tests
run-name: ${{ gitea.actor }} is testing Fibonacci
on: [push]
on:
push:
branches:
- '*'
jobs:
Explore-Gitea-Actions:
Run-unit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code