add gitea action for unit tests
This commit is contained in:
parent
cd7cb5ec6a
commit
d7ea301240
1 changed files with 14 additions and 0 deletions
14
.gitea/workflows/test.yaml
Normal file
14
.gitea/workflows/test.yaml
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: Elixir tests
|
||||
run-name: Running AoC Unit tests
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Explore-Gitea-Actions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- uses: erlef/setup-beam@v1
|
||||
with:
|
||||
version-file: .tool-versions
|
||||
- run: mix test
|
Loading…
Add table
Reference in a new issue