gitea-actions-playground/.gitea/workflows/default.yml
Martin Below 44cf87e20a
Some checks failed
Build Project / Compile (push) Failing after 12s
ci config
2024-06-10 07:13:37 +02:00

22 lines
576 B
YAML

name: Build Project
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
services:
database:
image: mariadb:11.4.2-ubi9
environment:
MARIADB_DATABASE: "wazzl"
MARIADB_USER: "wazzl"
MARIADB_PASSWORD: "wazzl"
MARIADB_ROOT_PASSWORD: root
MARIADB_MYSQL_LOCALHOST_GRANTS: "wazzl"
container:
steps:
- name: install required stuff
run: apt-get -y update ; apt -y install netcat-openbsd; nc localhost 3306
- name: run tests
run: which nc; nc localhost 3306