You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please configure integration with GitHub Actions CI/CD:
Create a new branch called feature/14-gha-ci-cd-integration and do all the following steps within that branch.
Add .github/workflows/ci.yml running pre-commit. Set it up to run Python 3.9 env. Ensure you install pre-commit before running tests:
name: testson:
push:
pull_request:
jobs:
linters:
runs-on: ubuntu-lateststeps:
- name: Fetch the srcuses: actions/checkout@v2
- name: Set up Python 3.9uses: actions/setup-python@v2with:
python-version: 3.9
- name: Install pre-commitrun: python -m pip install --upgrade pre-commit
- name: Run pre-commitrun: python -m pre_commit run --all-files
Add GitHub Actions CI/CD badge (master branch) to README.md with a single commit. ([![Build Status](https://github.com/kpi-web-guild/django-girls-blog-mike-011/workflows/tests/badge.svg)](https://github.com/kpi-web-guild/django-girls-blog-mike-011/actions?query=workflow%3Atests+branch%3Amaster))
Push the branch and create a Pull Request for it.
The text was updated successfully, but these errors were encountered:
Please configure integration with GitHub Actions CI/CD:
feature/14-gha-ci-cd-integration
and do all the following steps within that branch..github/workflows/ci.yml
runningpre-commit
. Set it up to run Python 3.9 env. Ensure you installpre-commit
before running tests:master
branch) toREADME.md
with a single commit. ([![Build Status](https://github.com/kpi-web-guild/django-girls-blog-mike-011/workflows/tests/badge.svg)](https://github.com/kpi-web-guild/django-girls-blog-mike-011/actions?query=workflow%3Atests+branch%3Amaster)
)The text was updated successfully, but these errors were encountered: