diff --git a/.fernignore b/.fernignore index b045621..f0e36a0 100644 --- a/.fernignore +++ b/.fernignore @@ -4,4 +4,5 @@ src/axiomatic/client.py src/axiomatic/document_helpers.py src/axiomatic/magic.py src/axiomatic/pic_helpers.py -src/axiomatic/axtract/ \ No newline at end of file +src/axiomatic/axtract/ +.github/workflows/ci.yml \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa41c1f..5c708fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: ci on: [push] jobs: compile: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v3 @@ -19,7 +19,7 @@ jobs: - name: Compile run: poetry run mypy . test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v3 @@ -39,7 +39,7 @@ jobs: publish: needs: [compile, test] if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v3