13 lines
289 B
YAML
13 lines
289 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
test1:
|
|
runs-on: host-arch-x86_64
|
|
steps:
|
|
- name: Clone repository
|
|
run: git clone --revision ${{ gitea.sha }} --depth 1 ${{ gitea.server_url }}/${{ gitea.repository }}
|
|
|
|
- name: Run tests
|
|
working-directory: test5
|
|
run: ./test.sh
|