-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can not start python environment in MacOS #388
Comments
Same problem on Ubuntu 20.04. Workflow works fine on Github Actions, but fail with same error using act. jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '11'
- uses: actions/setup-go@v1
with:
go-version: '1.13.8'
- uses: actions/setup-node@v1
with:
node-version: '10.x'
- uses: actions/setup-python@v2
with:
python-version: '2.7'
- name: golangci-lint
uses: golangci/golangci-lint-action@v1
with:
version: v1.30
working-directory: src/backend |
I also have this problem, it appears to be a duplicate of #251. As mentioned on that issue, try using the alternative runner image with one of the following flags depending on which image you've specified in your workflow.
|
this problem was solved 👍 thank you @davidjmeyer |
I run
act push -j fastapi
, then I got a errorThis is the action file
Who can help me to resolve this problem?
The text was updated successfully, but these errors were encountered: