diff --git a/.github/workflows/secrets.yml b/.github/workflows/secrets.yml new file mode 100644 index 0000000..b9f0efa --- /dev/null +++ b/.github/workflows/secrets.yml @@ -0,0 +1,19 @@ +--- +name: Secrets +on: + - push + +jobs: + testing_secrets: + runs-on: "ubuntu-24.04" + steps: + # Checkout this repository + - uses: actions/checkout@v4 + + - run: python3 --version + + - run: echo "${{ secrets.MY_SECRET }}" + + - run: | + ls -al ${{ secrets.HIDDEN_FILE }} +