Files
fibonacci/.gitea/workflows/container.yaml
Rens Houben 853bee22db
Some checks failed
Fibonacci unit tests / Containerize (push) Failing after 5s
Fibonacci unit tests / Run-unit-tests (push) Successful in 38s
Mark the container workflow as in progress andfail it.
2025-07-24 13:40:38 +02:00

24 lines
526 B
YAML

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: |
echo "Still needs to be implemented."
exit 1