From 1bb6f28de4c6d017b2e617fe50a82d557675586e Mon Sep 17 00:00:00 2001 From: danellecline Date: Tue, 13 Feb 2024 21:03:44 -0800 Subject: [PATCH] build: added release and pytest --- .github/workflows/pytest.yml | 22 ++++++++++++++++++++++ .github/workflows/release.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 .github/workflows/pytest.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 0000000..e40d240 --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,22 @@ +name: Run pytest + +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.9' + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Run pytest + run: pytest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..e86ab6b --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,27 @@ +name: New Release +on: + push: + branches: + - main +jobs: + semantic_release: + runs-on: ubuntu-latest + name: Runs semantic release + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "lts/*" + - name: Install dependencies + run: npm install commitizen @semantic-release/commit-analyzer @semantic-release/release-notes-generator @semantic-release/exec @semantic-release/changelog @semantic-release/npm @semantic-release/git + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: 000000000000000 + GIT_AUTHOR_NAME: danellecline + GIT_COMMITTER_NAME: danellecline + run: npx semantic-release \ No newline at end of file