mirror of
https://github.com/lipis/flag-icons.git
synced 2024-11-25 05:16:55 +01:00
23da186dbc
This will allow to automatically use the latest setup-python v4 action version and will save us time from constantly specifying the more exact latest version. This will need to be changed again when setup-python v5 action comes out.
17 lines
317 B
YAML
17 lines
317 B
YAML
name: Test Flags
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.x"
|
|
architecture: "x64"
|
|
- name: Test flags
|
|
run: python flags.py
|