Ubuntu – connecting to a remote server using openvpn in a github actions workflow
This is my CI workflow in Github Actions: name: CI on: push: branches: [ "main" ] jobs: docker-build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Install Poetry uses: snok/install-poetry@v1 - name: create requirements run: poetry export --without-hashes --format=requirements.txt >…