Skip to content

Feature/2 enable GitHub action for cicd #14

Feature/2 enable GitHub action for cicd

Feature/2 enable GitHub action for cicd #14

Workflow file for this run

name: Test
on:
pull_request:
branches: [ master, development ]
jobs:
test:
name: Run unittests
runs-on: ubuntu-latest
container:
image: golang:latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run tests
run: |
apt update
apt install openssh-server -y
useradd sshtest
echo "sshtest:pdKY77qNxpI5MAizirtjCVOcm0KFKIs" | chpasswd
service ssh start
make test