All checks were successful
Run tests / Run make test (push) Successful in 1s
17 lines
401 B
YAML
17 lines
401 B
YAML
name: Run tests
|
|
on: [push]
|
|
|
|
jobs:
|
|
make-test:
|
|
name: Run make test
|
|
runs-on: linux_amd64
|
|
steps:
|
|
- name: "Checkout the repository"
|
|
run: git clone "${{ gitea.server_url }}/${{ gitea.repository }}"
|
|
- name: "real Run make test"
|
|
working-directory: ./django-dav-events
|
|
run: pwd
|
|
- name: "ls"
|
|
working-directory: ./django-dav-events
|
|
run: ls
|