11 lines
230 B
YAML
11 lines
230 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: |
|
|
apt-get update
|
|
apt-get install -y python3 neofetch
|
|
python3 --version
|
|
neofetch
|
|
- uses: actions/checkout@v6 |