Skip to content

Commit 96f5b4c

Browse files
speleo3pslacerda
authored andcommitted
Github actions
1 parent 25902a9 commit 96f5b4c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-22.04
8+
steps:
9+
- uses: actions/checkout@v4
10+
11+
- uses: mamba-org/setup-micromamba@v2
12+
with:
13+
generate-run-shell: true
14+
environment-name: ci
15+
create-args: >-
16+
pillow
17+
pymol-open-source
18+
pyopengl
19+
pytest
20+
requests
21+
22+
- name: Test
23+
run: python3 -m pytest -v
24+
shell: micromamba-shell {0}

0 commit comments

Comments
 (0)