17 lines
273 B
YAML
17 lines
273 B
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Test Python
|
|
run: |
|
|
set -x
|
|
python3 --version
|
|
pip3 --version
|
|
- name: Install pytest
|
|
run: |
|
|
set -x
|
|
pip3 install pytest |