From 8b94956872d9ef4eb88737380f16bab674e093e9 Mon Sep 17 00:00:00 2001 From: Mahdi Hasnat Siyam <44502454+mahdihasnat@users.noreply.github.com> Date: Sat, 20 Jan 2024 00:05:40 +0600 Subject: [PATCH] ci: Run on ubuntu-latest, add workflow dispatch, trigger on push any branch --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1488dc2..68bc622 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,14 +2,15 @@ name: Tests on: push: - branches: [ "master" ] + branches: [ "**" ] pull_request: branches: [ "master" ] + workflow_dispatch: jobs: run-scripts: name: Run scripts - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4