首頁 > 後端開發 > Python教學 > 使用 Github Actions 進行自動化測試

使用 Github Actions 進行自動化測試

Patricia Arquette
發布: 2024-12-04 10:42:14
原創
388 人瀏覽過

Automate testing with Github Actions

我假設您有一個 Python 項目,但您可以使其適應任何語言/框架。

在專案根目錄建立 .github/workflows 資料夾和 yml 檔案。

mkdir -p .github/workflows && touch .github/workflows/testing.yml
登入後複製

testing.yml 檔案:

name: test
on:
  pull_request:
    branches:
      - main
      # Add any branch

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Set up Python 3.x
        uses: actions/setup-python@v4
        with:
          python-version: "3.10"
          architecture: "x64"
      - name: Display Python version
        run: python -c "import sys; print(sys.version)"

      - name: Install dependencies
      # Install necessary dependencies to run the tests
        run: |
          python -m pip install --upgrade pip
          pip install poetry
          poetry install

      - name: Run Tests
      # Add command to run test
        run: |
          make test

登入後複製

每次向主分支發出 PR 時,測試都會執行。
我使用的是 Python 項目,但您可以輕鬆找到任何語言或框架的 YAML 範本檔案。
然後,您可以在 GitHub 上新增分支規則,以防止在測試失敗時合併 PR。

以上是使用 Github Actions 進行自動化測試的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板