Skip to content

Commit 170aa99

Browse files
Merge pull request #49 from Axiomatic-AI/fix-ci
Fix CI runner version
2 parents 4111ef9 + ae19611 commit 170aa99

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.fernignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ src/axiomatic/client.py
44
src/axiomatic/document_helpers.py
55
src/axiomatic/magic.py
66
src/axiomatic/pic_helpers.py
7-
src/axiomatic/axtract/
7+
src/axiomatic/axtract/
8+
.github/workflows/ci.yml

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: ci
33
on: [push]
44
jobs:
55
compile:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-latest
77
steps:
88
- name: Checkout repo
99
uses: actions/checkout@v3
@@ -19,7 +19,7 @@ jobs:
1919
- name: Compile
2020
run: poetry run mypy .
2121
test:
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout repo
2525
uses: actions/checkout@v3
@@ -39,7 +39,7 @@ jobs:
3939
publish:
4040
needs: [compile, test]
4141
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
42-
runs-on: ubuntu-20.04
42+
runs-on: ubuntu-latest
4343
steps:
4444
- name: Checkout repo
4545
uses: actions/checkout@v3

0 commit comments

Comments
 (0)