Skip to content

Commit

Permalink
something
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Apr 25, 2024
1 parent c2af9bb commit 1cf0b2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Ensure requests to production domains fail
shell: bash
run: |
if [ "$NOT_LINUX" == "true" ] ; then
echo "Can't set /etc/hosts configuration on non-Linux runner"
Expand All @@ -56,7 +57,7 @@ jobs:
echo "203.0.113.0 logfire-api.pydantic.dev" | sudo tee -a /etc/hosts
echo "203.0.113.0 logfire.pydantic.dev" | sudo tee -a /etc/hosts
env:
NOT_LINUX: runner.os != 'linux'
NOT_LINUX: ${{ matrix.os }} != 'linux'
- name: set up python
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit 1cf0b2f

Please sign in to comment.