Files
fibonacci/.gitea/workflows/container.yaml
Rens Houben 0187d4031c
Some checks failed
Fibonacci container test / Containerize (push) Failing after 30s
Fibonacci unit tests / Run-unit-tests (push) Successful in 44s
Slightly cleaner error reporting.
2025-08-25 13:16:43 +02:00

24 lines
547 B
YAML

name: Fibonacci container test
run-name: ${{ gitea.actor }} is testing Fibonacci containerization
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