Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: run python
run: ./runTests.sh
working-directory: tests
env:
distribution: ../distribution.py
- name: run perl
run: ./runTests.sh
working-directory: tests
env:
distribution: ../distribution
2 changes: 1 addition & 1 deletion tests/runTests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/bash

# make sure env is setup proper
if [ "xxx$distribution" == "xxx" ] ; then
Expand Down