Skip to content

Commit

Permalink
Move from circleci to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nascosto committed Apr 8, 2024
1 parent 5e0e923 commit 7ab06cb
Show file tree
Hide file tree
Showing 6 changed files with 529 additions and 456 deletions.
32 changes: 0 additions & 32 deletions .circleci/config.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Lint and test

on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: touch .env
- name: Install dependencies
run: |
pip install pipenv
pipenv install --dev
- name: Run linter
run: pipenv run pylint scraper cli deployer
- name: Run tests
run: pipenv run ./docsearch test no_browser
Loading

0 comments on commit 7ab06cb

Please sign in to comment.