All checks were successful
test-backend / test-x86_64 (push) Successful in 7s
20 lines
447 B
YAML
20 lines
447 B
YAML
name: test-backend
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
test-x86_64:
|
|
runs-on: hardware-x86_64
|
|
steps:
|
|
- name: Pull repository
|
|
shell: sh
|
|
run: |
|
|
git init
|
|
git remote add gitea http://10.1.1.1:3000/hasslesstech/sdlc-project
|
|
git fetch gitea
|
|
git checkout gitea/master
|
|
- name: Deploy testing environment
|
|
shell: sh
|
|
run: docker-compose -f backend/docker-compose-x86_64.yaml up -d
|