2024-07-21 23:55:43 +02:00
|
|
|
on: [push]
|
|
|
|
|
jobs:
|
|
|
|
|
test:
|
2024-07-22 00:32:46 +02:00
|
|
|
name: Test
|
2024-07-21 23:55:43 +02:00
|
|
|
runs-on: docker
|
|
|
|
|
steps:
|
2024-07-22 00:28:03 +02:00
|
|
|
- run: echo All Good
|
2024-07-22 00:28:46 +02:00
|
|
|
checkout:
|
|
|
|
|
runs-on: docker
|
|
|
|
|
name: Checkout
|
|
|
|
|
steps:
|
|
|
|
|
- name: Cache repository
|
|
|
|
|
uses: actions/cache@v4
|
|
|
|
|
id: cache-repository
|
|
|
|
|
with:
|
|
|
|
|
path: repository
|
|
|
|
|
key: ${{ runner.os }}-repository-${{ github.sha }}
|
|
|
|
|
restore-keys: |
|
|
|
|
|
${{ runner.os }}-repository-
|
|
|
|
|
- name: Checkout repository
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
with:
|
|
|
|
|
path: repository
|
2024-07-22 00:32:46 +02:00
|
|
|
submodules: recursive
|
2024-07-22 00:33:42 +02:00
|
|
|
- run: echo $PWD && ls -la && cd repository && docker build .
|
2024-07-22 00:32:46 +02:00
|
|
|
|
|
|
|
|
|