main.yml 371 B

123456789101112131415
  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@v2
  8. - name: test build-Build and run dev container task
  9. uses: devcontainers/ci@v0.2
  10. with:
  11. runCmd: |
  12. make install
  13. make lint
  14. make test
  15. make format