fix: move test workflow to correct folder
Some checks failed
Run tests / test-project (push) Failing after 11s
Some checks failed
Run tests / test-project (push) Failing after 11s
This commit is contained in:
17
.gitea/workflows/run-tests.yaml
Normal file
17
.gitea/workflows/run-tests.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Run tests
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
test-project:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Install elixir
|
||||
uses: erlef/setup-beam@v1
|
||||
- name: Install dependencies
|
||||
run: mix deps.get
|
||||
- name: Run tests
|
||||
run: mix test
|
||||
|
Reference in New Issue
Block a user