CI/CD Pipeline with GitHub Actions.
CI/CD with GitHub Actions
GitHub Actions makes it easy to automate your software workflows.
name: Django CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: |
python -m pytest
Common Workflows
- Automated testing
- Continuous deployment
- Code quality checks