diff --git a/.github/workflows/self-hosted.yaml b/.github/workflows/self-hosted.yaml index ee7566c..094ff50 100644 --- a/.github/workflows/self-hosted.yaml +++ b/.github/workflows/self-hosted.yaml @@ -6,19 +6,13 @@ on: jobs: build: - runs-on: [self-hosted, test] + runs-on: [self-hosted] name: Python on test's computer steps: - uses: actions/checkout@v1 - name: Install dependencies run: | - python3 -m venv env - source env/bin/activate - python3 -m pip install --upgrade pip - pip3 install .[dev] + echo "hello cruel world" - name: Test with pytest run: | - source env/bin/activate - pip3 install pytest - pytest - python3 -c "from hello_ci import HelloCI; HelloCI().greet()" + echo 'Ciao mondo!'