Skip to content

Commit

Permalink
chore: remove check-code workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FacerAin committed Nov 23, 2022
1 parent 6d18ca2 commit 459a0f3
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/check-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,6 @@ name: check-code

on: [pull_request]

jobs:
check-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Cache pip
uses: actions/cache@v2
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies
uses: py-actions/py-dependency-install@v4
with:
path: "requirements.txt"
- name: Check Test
run: |
make test
check-lint:
runs-on: ubuntu-latest

Expand Down

0 comments on commit 459a0f3

Please sign in to comment.