-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (32 loc) · 743 Bytes
/
tests.yml
File metadata and controls
33 lines (32 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: tests
on:
push:
paths:
- '.github/workflows/tests.yml'
- 'Dockerfile'
- 'src/lib.rs'
- 'src/utils.rs'
- 'res/tests/*.txt'
- 'src/utils/**.rs'
workflow_dispatch:
jobs:
tests32:
name: tests on 32-bit alpine:3.19
runs-on: ubuntu-22.04
steps:
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
push: false
load: true
tags: tests32
- uses: addnab/docker-run-action@v3
with:
image: tests32
run: cargo test --release
tests64:
name: tests on 64-bit ubuntu-22.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: cargo test --release