Compare commits

..

No commits in common. "8b3af691f121e51f08a9c0833212a9292595806d" and "643ea7569d13cd67a86cc2671127d80927a6074a" have entirely different histories.

2 changed files with 12 additions and 20 deletions

View File

@ -0,0 +1,12 @@
# 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

@ -1,20 +0,0 @@
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