2023-10-19 09:24:24 +02:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package actions
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
FixtureFiles: []string{
|
2024-05-19 12:46:15 +02:00
|
|
|
"action_runner.yml",
|
2023-10-19 09:24:24 +02:00
|
|
|
"action_runner_token.yml",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|