name: test on: [push] jobs: container-job: runs-on: ubuntu-22.04 container: image: ubuntu:22.04 options: --cpus 1 steps: - name: InstallGit run: | sed -i '/security.ubuntu.com/d' /etc/apt/sources.list apt-get update -y apt-get install -y git git-lfs - uses: actions/checkout@v4 - name: Check run: (ls /.dockerenv && echo Found dockerenv) || (echo No dockerenv) - name: list run: ls /workspace