Skip to content

Commit

Permalink
Add basic workflow for install + test
Browse files Browse the repository at this point in the history
  • Loading branch information
ianohara committed Dec 5, 2024
1 parent 0cfd953 commit 16a1fbf
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Install Environment and Run Tests

on:
push:
pull_request:

jobs:
install-and-test:
permissions:
contents: read
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ./software
steps:
- name: Checkout the Squid repo
uses: actions/checkout@v4
- name: Run the setup script for Ubuntu 22.04
run: ./setup_22.04.sh
- name: Run the cuda setup script
run: ./setup_cuda_22.04.sh
- name: Run the tests
run: python3 -m pytest

0 comments on commit 16a1fbf

Please sign in to comment.