19 lines
504 B
YAML
19 lines
504 B
YAML
|
name: dR export statistics
|
||
|
run-name: dR export statistics
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
Compile:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: List files in the repository
|
||
|
run: |
|
||
|
ls ${{ gitea.workspace }}
|
||
|
- run: echo "Install dependencies."
|
||
|
- run: apt update
|
||
|
- run: apt install python3 python3-pip python3-venv make -y
|
||
|
- run: make
|
||
|
- run: echo "This job's status is ${{ job.status }}."
|