mirror of
https://github.com/barkeser2002/duplicate-file-finder.git
synced 2026-09-25 08:00:16 +03:00
25 lines
487 B
YAML
25 lines
487 B
YAML
---
|
|
name: Tests
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
name: Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
|
|
- name: Python version investigation
|
|
run: python --version
|
|
|
|
- name: OS investigation
|
|
run: uname -a
|
|
|
|
- name: Run the tests
|
|
run: python test_dff.py
|