ci: Updated github action.

This commit is contained in:
2026-06-12 16:40:25 -04:00
parent b1b0449b7b
commit 930c3d4c5d

View File

@@ -10,12 +10,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libsodium-dev sqlite3 libsqlite3-dev
sudo apt-get install -y libsodium-dev sqlite3 libsqlite3-dev libsodium-dev
- name: Install Odin
run: |
@@ -25,7 +25,9 @@ jobs:
echo "/opt/odin" >> "$GITHUB_PATH"
- name: Build
run: odin build . -o:speed -out:envr
run: |
make version.odin
odin build . -o:speed -out:envr
- name: Test
run: odin test .