Skip to content

Commit

Permalink
use github action to setup env
Browse files Browse the repository at this point in the history
* this is because direnv needs more steps to export PATH, etc. which this action takes care of
  • Loading branch information
akshaykarle committed Apr 18, 2024
1 parent e2a677f commit 8e2bb46
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test and Build
name: "Test and Build"

on: [push]

Expand All @@ -8,14 +8,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup
run: ./setup.sh
shell: bash
- name: "Setup env"
uses: JRMurr/[email protected]

- name: Install python dependencies
- name: "Install python dependencies"
run: poetry install
shell: bash

- name: Test
- name: "Test"
run: poetry run python -m unittest tests/**.py
shell: bash

0 comments on commit 8e2bb46

Please sign in to comment.