Skip to content

Commit

Permalink
Migrate CI to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kinuax committed May 7, 2024
1 parent 45905df commit 5d532fc
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 26 deletions.
18 changes: 0 additions & 18 deletions .circleci/config.yml

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Tests

on:
pull_request:
branches: [main]
push:

jobs:
Tests:
name: ${{ matrix.os }} - ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.10]
fail-fast: false
steps:
- uses: actions/checkout@v4

- name: Install Poetry
run: pipx install poetry

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry

- name: Install dependencies
run: poetry install

- name: Test
run: poetry run pytest -v
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

0 comments on commit 5d532fc

Please sign in to comment.