18 lines
375 B
YAML
18 lines
375 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
jobs:
|
|
container-test-job:
|
|
runs-on: ubuntu-latest
|
|
container: git.phyllo.me/roots/fedora-iso-creation:42
|
|
steps:
|
|
- name: Echo Current Path
|
|
run: |
|
|
pwd
|
|
echo "Current working directory:"
|
|
- name: List Files
|
|
run: |
|
|
ls -la
|
|
echo "Files in current directory:"
|