main.yml 433 B

123456789101112131415161718
  1. name: Python application test with Github Actions using devcontainers
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v4
  8. with:
  9. persist-credentials: false
  10. - name: test build-Build and run dev container task
  11. uses: devcontainers/ci@v0.2
  12. with:
  13. runCmd: |
  14. make install
  15. make lint
  16. make test
  17. make format