22 lines
538 B
YAML
22 lines
538 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
# - uses: actions/checkout@v4
|
|
# - uses: actions/setup-python@v5
|
|
# with:
|
|
# python-version: '3.11'
|
|
# cache: 'pip'
|
|
# - name: Install requirements
|
|
# run: pip install -r requirements.txt
|
|
- name: Run action
|
|
run: sudo apt install -y git-lfs
|
|
- name: Show date
|
|
run: date
|
|
- name: Show id output
|
|
run: id
|