22 lines
388 B
YAML
22 lines
388 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- 'mai*'
|
|
|
|
jobs:
|
|
test:
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- run: ls -al
|
|
|
|
- name: Checkout tools repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: milka64/oxidized
|
|
token: ${{ secrets.TOKEN }}
|
|
path: my-tools
|
|
ref: master
|
|
|
|
- run: ls -al my-tools
|