name: Python application test with Github Actions using devcontainers on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: persist-credentials: false - name: test build-Build and run dev container task uses: devcontainers/ci@v0.2 with: runCmd: | make install make lint make test make format