Compare commits

...

11 Commits

Author SHA1 Message Date
8b3af691f1 with path
Some checks failed
Test / Test (push) Failing after 1m45s
2023-05-02 21:18:02 -05:00
5d4dbfbe45 where
Some checks failed
Test / Test (push) Failing after 1m17s
2023-05-02 21:16:26 -05:00
a3f5c8758e v4
Some checks are pending
Test / Test (push) Has started running
2023-05-02 21:10:12 -05:00
75e0d15ac0 is this how
Some checks are pending
Test / Test (push) Has started running
2023-05-02 21:07:37 -05:00
e103763428 what about this
Some checks failed
Test / Test (push) Failing after 53s
2023-05-02 21:01:41 -05:00
e536918c62 python3
Some checks failed
Test / Test (push) Failing after 1m49s
2023-05-02 20:58:32 -05:00
98fc39a5cd apt -y
Some checks failed
Test / Test (push) Failing after 1m16s
2023-05-02 20:57:12 -05:00
faaedb10ce without sudo
Some checks failed
Test / Test (push) Failing after 1m1s
2023-05-02 20:56:11 -05:00
30d0a06137 try apt
Some checks failed
Test / Test (push) Failing after 57s
2023-05-02 20:55:10 -05:00
b3ff7a7920 try skipping install
Some checks failed
Test / Test (push) Failing after 51s
2023-05-02 20:53:03 -05:00
255d8aa81d attempt tests
Some checks failed
Test / Test (push) Failing after 36s
2023-05-02 20:51:25 -05:00
2 changed files with 20 additions and 12 deletions

View File

@ -1,12 +0,0 @@
# name: Gitea Actions Demo
# run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
# on: [push]
# jobs:
# Explore-Gitea-Actions:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@v3
# - name: List files in the repository
# run: |
# ls ${{ github.workspace }}

View File

@ -0,0 +1,20 @@
name: Test
run-name: ${{ github.actor }} running tests
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Install Python and pip
run: |
apt update
apt install -y python3-pip
whereis python3
- name: Check out repository code
uses: actions/checkout@v3
- name: Install dependencies
run: |
/usr/bin/python3 -m pip install --upgrade pip
/usr/bin/python3 -m pip install .
- name: Run tests
run: /usr/bin/python3 -m unittest