test: add step in gitHub action from running tests first (#476)

* Add step for running tests in github actions

The test xlsx/xlsx_test.go is removed becout the path containing
file not exist.

* Fix error in test

* test: This test was supposed to test getUsers, but it does nothing

This test will be rewrite for using a clean database, today its
necessary create a syncer manualy for this test pass.

* Add syncer tests

* Fix Copyright position

* fix: back with test file
This commit is contained in:
Rafael Firmino
2022-02-10 06:15:15 -03:00
committed by GitHub
parent eb15afec34
commit 47d1448c02
3 changed files with 29 additions and 5 deletions

View File

@ -11,6 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// +build !skipCi
package xlsx
@ -19,4 +20,4 @@ import "testing"
func TestReadSheet(t *testing.T) {
ticket := ReadXlsxFile("../../tmpFiles/example")
println(ticket)
}
}